Skip to content

Commit

Permalink
Backport from release-v0.9.13 banch (#1067)
Browse files Browse the repository at this point in the history
* minor fix of text search

* fix small typo
  • Loading branch information
Kailai-Wang authored Dec 7, 2022
1 parent e092a1c commit 14e0b88
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-bot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
with:
args: |
Hi @everyone,
🚀 A new client release has been build: https://github.com/litentry/litentry-parachain/releases/tag/${{ github.event.release.tag_name }}
🚀 A new client release has been built: https://github.com/litentry/litentry-parachain/releases/tag/${{ github.event.release.tag_name }}
✨ Please update the client using the docker image litentry/litentry-parachain:${{ github.event.release.tag_name }}
- name: Update litmus image version
Expand Down
6 changes: 3 additions & 3 deletions scripts/generate-release-notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ if [ "$2" != "runtime" ]; then
fi
fi

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

echo > "$1"
echo "## This is a release for:" >> "$1"
Expand Down

0 comments on commit 14e0b88

Please sign in to comment.