1
0
mirror of synced 2026-02-06 19:05:55 +00:00

Merge pull request #2304 from fluxcd/fix-release-notes-gen

ci: Fix release notes generator
This commit is contained in:
Stefan Prodan
2022-01-18 18:33:23 +02:00
committed by GitHub

View File

@@ -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