1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix release action step in release workflow (#6372)

Signed-off-by: Sebastian Malton <sebastian@malton.name>

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2022-10-07 11:50:00 -04:00 committed by GitHub
parent 1e6cabd8bf
commit 8155558509
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -22,9 +22,9 @@ jobs:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
tag_prefix: "v" tag_prefix: "v"
- uses: ncipollo/release-action@v1 - uses: ncipollo/release-action@v1
if: ${{ needs.tag.outputs.tagname != '' }} if: ${{ steps.tagger.outputs.tagname != '' }}
with: with:
name: v${{ steps.open-lens-version.outputs.VERSION }} name: ${{ steps.tagger.outputs.tagname }}
commit: master commit: master
tag: v${{ steps.open-lens-version.outputs.VERSION }} tag: ${{ steps.tagger.outputs.tagname }}
body: ${{ github.event.pull_request.body }} body: ${{ github.event.pull_request.body }}