From 81555585095334f3550370428b4ba0d876c99601 Mon Sep 17 00:00:00 2001 From: Sebastian Malton Date: Fri, 7 Oct 2022 11:50:00 -0400 Subject: [PATCH] Fix release action step in release workflow (#6372) Signed-off-by: Sebastian Malton Signed-off-by: Sebastian Malton --- .github/workflows/release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 29769a4b14..e672db44a0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -22,9 +22,9 @@ jobs: GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" tag_prefix: "v" - uses: ncipollo/release-action@v1 - if: ${{ needs.tag.outputs.tagname != '' }} + if: ${{ steps.tagger.outputs.tagname != '' }} with: - name: v${{ steps.open-lens-version.outputs.VERSION }} + name: ${{ steps.tagger.outputs.tagname }} commit: master - tag: v${{ steps.open-lens-version.outputs.VERSION }} + tag: ${{ steps.tagger.outputs.tagname }} body: ${{ github.event.pull_request.body }}