From 4e6a3f6ca90e34593565f3d95b7f04c4a0fcd4df Mon Sep 17 00:00:00 2001 From: k1LoW Date: Wed, 28 Sep 2022 11:15:48 +0900 Subject: [PATCH] Fix release pipeline --- .github/workflows/tagpr.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tagpr.yml b/.github/workflows/tagpr.yml index 4af87957..43024330 100644 --- a/.github/workflows/tagpr.yml +++ b/.github/workflows/tagpr.yml @@ -7,6 +7,8 @@ on: jobs: tagpr: runs-on: ubuntu-latest + outputs: + tagpr-tag: ${{ steps.run-tagpr.outputs.tag }} env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} steps: @@ -19,7 +21,7 @@ jobs: release: needs: tagpr - if: needs.tagpr.outputs.run-tagpr.outputs.tag != '' + if: needs.tagpr.outputs.tagpr-tag != '' runs-on: macos-latest env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}