Skip to content

Commit

Permalink
Create a GitHub release for each action release
Browse files Browse the repository at this point in the history
Must make sure this release is not marked as `latest` or else it will
interfere with the CLI bundle releases also included in this repo.
  • Loading branch information
Andrew Eisenberg committed Oct 2, 2024
1 parent e85017e commit 9b4db1e
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/post-release-mergeback.yml
Original file line number Diff line number Diff line change
Expand Up @@ -150,3 +150,14 @@ jobs:
--body "${pr_body}" \
--assignee "${GITHUB_ACTOR}" \
--draft
- name: Create the GitHub release
env:
VERSION: "${{ steps.getVersion.outputs.version }}"
run: |
# Do not mark this release as latest. The most recent CLI release must be marked as latest.
gh release create \
"${VERSION}" \
--latest=false \
-t "${VERSION}" \
-F CHANGELOG.md

0 comments on commit 9b4db1e

Please sign in to comment.