Create a GitHub release for each action release

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.
This commit is contained in:
Andrew Eisenberg 2024-10-02 15:08:20 -07:00
parent e85017e674
commit 9b4db1efbf
No known key found for this signature in database

View file

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