Skip to content

Commit 14e0b88

Browse files
authored
Backport from release-v0.9.13 banch (#1067)
* minor fix of text search * fix small typo
1 parent e092a1c commit 14e0b88

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/release-bot.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
with:
1818
args: |
1919
Hi @everyone,
20-
🚀 A new client release has been build: https://github.com/litentry/litentry-parachain/releases/tag/${{ github.event.release.tag_name }}
20+
🚀 A new client release has been built: https://github.com/litentry/litentry-parachain/releases/tag/${{ github.event.release.tag_name }}
2121
✨ Please update the client using the docker image litentry/litentry-parachain:${{ github.event.release.tag_name }}
2222
2323
- name: Update litmus image version

scripts/generate-release-notes.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,9 @@ if [ "$2" != "runtime" ]; then
3636
fi
3737
fi
3838

39-
SUBSTRATE_DEP=$(grep sp-core node/Cargo.toml | sed 's/.*branch = "//;s/".*//')
40-
CUMULUS_DEP=$(grep cumulus-client-cli node/Cargo.toml | sed 's/.*branch = "//;s/".*//')
41-
POLKADOT_DEP=$(grep polkadot-cli node/Cargo.toml | sed 's/.*branch = "//;s/".*//')
39+
SUBSTRATE_DEP=$(grep -F 'https://github.com/paritytech/substrate' node/Cargo.toml | head -n1 | sed 's/.*branch = "//;s/".*//')
40+
POLKADOT_DEP=$(grep -F 'https://github.com/paritytech/polkadot' node/Cargo.toml | head -n1 | sed 's/.*branch = "//;s/".*//')
41+
CUMULUS_DEP=$(grep -F 'https://github.com/paritytech/cumulus' node/Cargo.toml | head -n1 | sed 's/.*branch = "//;s/".*//')
4242

4343
echo > "$1"
4444
echo "## This is a release for:" >> "$1"

0 commit comments

Comments
 (0)