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:
parent
e85017e674
commit
9b4db1efbf
1 changed files with 11 additions and 0 deletions
11
.github/workflows/post-release-mergeback.yml
vendored
11
.github/workflows/post-release-mergeback.yml
vendored
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue