Skip to content

Commit

Permalink
Fix another changelog generation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
wilwade committed Sep 29, 2023
1 parent d4fe88e commit 56837bd
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -726,11 +726,15 @@ jobs:
echo "runtime_info_mainnet=$runtime_info_mainnet" >> $GITHUB_OUTPUT
- name: Generate Release Notes
working-directory: tools/ci/release-notes
env:
CHANGELOG: ${{steps.sanitize-changelog.outputs.sanitized}}
RUNTIME_INFO_TESTNET: ${{steps.get-runtimes-info.outputs.runtime_info_rococo}}
RUNTIME_INFO_MAINNET: ${{steps.get-runtimes-info.outputs.runtime_info_mainnet}}
run: |
./build-release-notes.sh '${{steps.polkadot-version.outputs.version}}' \
'${{steps.sanitize-changelog.outputs.sanitized}}' \
'${{steps.get-runtimes-info.outputs.runtime_info_rococo}}' \
'${{steps.get-runtimes-info.outputs.runtime_info_mainnet}}' \
"${CHANGELOG}" \
"${RUNTIME_INFO_TESTNET}" \
"${RUNTIME_INFO_MAINNET}" \
> release-notes.md
- name: Publish Release Candidate on GitHub
if: steps.is-full-release.outputs.is-full-release != 'true'
Expand Down

0 comments on commit 56837bd

Please sign in to comment.