We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ed5bb39 commit 8ed38c3Copy full SHA for 8ed38c3
.github/workflows/build-publish.yml
@@ -51,8 +51,7 @@ jobs:
51
path: ./common-actions
52
token: ${{ secrets.GH_PAT_MACHINE_PARSABLE }}
53
ref: v1.0.1
54
- - name: Release
55
- uses: ./common-actions/release-with-changelog
56
- with:
57
- token: ${{ secrets.GITHUB_TOKEN }}
58
- tag: ${{ steps.tag.outputs.new_tag }}
+ - name: Create release
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ run: gh release create -t "${{ steps.tag.outputs.new_tag }}" --generate-notes "${{ steps.tag.outputs.new_tag }}"
0 commit comments