ci: Fix release notes generator

Signed-off-by: Stefan Prodan <stefan.prodan@gmail.com>
pull/2304/head
Stefan Prodan 3 years ago
parent 10046187a6
commit e44a58cba0
No known key found for this signature in database
GPG Key ID: 3299AEB0E4085BAF

@ -67,9 +67,9 @@ jobs:
run: cd /tmp && curl -sSL ${GH_REL_URL} | tar xz && sudo mv github-release-notes /usr/local/bin/
- name: Generate release notes
run: |
$NOTES="./output/notes.md"
echo '## CLI Changelog' > ${$NOTES}
github-release-notes -org fluxcd -repo flux2 -since-latest-release -include-author >> ${$NOTES}
NOTES="./output/notes.md"
echo '## CLI Changelog' > ${NOTES}
github-release-notes -org fluxcd -repo flux2 -since-latest-release -include-author >> ${NOTES}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Run GoReleaser

Loading…
Cancel
Save