Skip to content

Commit

Permalink
fix: release pipeline for testnet
Browse files Browse the repository at this point in the history
  • Loading branch information
ns212 committed Jun 14, 2022
1 parent 97d5fe2 commit 3af3ea3
Showing 1 changed file with 12 additions and 11 deletions.
23 changes: 12 additions & 11 deletions scripts/release_notes.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,15 @@
git-chglog --output CHANGELOG.md $GITHUB_REF_NAME
PREV_TAG=$(git describe --abbrev=0 --tags $(git rev-list --tags --skip=1 --max-count=1))
(
echo $'\n## Dependency changes'
bash scripts/history.sh $PREV_TAG $GITHUB_REF_NAME
echo $'\n## Runtimes'
echo $'\n### Interlay'
python3 scripts/srtool_info.py artifacts/interlay-srtool-json/interlay_srtool_output.json
echo $'\n### Kintsugi'
python3 scripts/srtool_info.py artifacts/kintsugi-srtool-json/kintsugi_srtool_output.json
echo $'\n### Testnet'
python3 scripts/srtool_info.py artifacts/testnet-srtool-json/testnet_srtool_output.json
) >> CHANGELOG.md

echo $'\n## Dependency changes'
bash scripts/history.sh $PREV_TAG $GITHUB_REF_NAME
echo $'\n## Runtimes'
echo $'\n### Interlay'
python3 scripts/srtool_info.py artifacts/interlay-srtool-json/interlay_srtool_output.json
echo $'\n### Kintsugi'
python3 scripts/srtool_info.py artifacts/kintsugi-srtool-json/kintsugi_srtool_output.json
echo $'\n### Testnet-Kintsugi'
python3 scripts/srtool_info.py artifacts/testnet-kintsugi-srtool-json/testnet-kintsugi_srtool_output.json
echo $'\n### Testnet-Interlay'
python3 scripts/srtool_info.py artifacts/testnet-interlay-srtool-json/testnet-interlay_srtool_output.json
) >>CHANGELOG.md

0 comments on commit 3af3ea3

Please sign in to comment.