Skip to content

Commit

Permalink
Merge pull request #172 from salasberryfin/update-release-process
Browse files Browse the repository at this point in the history
chore: change release name and generate release notes
  • Loading branch information
salasberryfin committed Sep 29, 2023
2 parents 63a33c8 + b2c9363 commit 2fcbc60
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,13 @@ jobs:
mkdir -p .cr-index
- name: Run chart-releaser upload
run: cr upload --skip-existing -c "$(git rev-parse HEAD)" --release-notes-file=RELEASE_NOTES.md
run: cr upload --skip-existing -c "$(git rev-parse HEAD)" --generate-release-notes --release-name-template "${{ env.TAG }}" --make-release-latest false

- name: Run chart-releaser index
run: cr index --push

- name: Set release as draft # `--make-release-latest false` in cr does not seem to work
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run:
gh release edit ${{ env.TAG}} --draft

0 comments on commit 2fcbc60

Please sign in to comment.