Skip to content

Commit 344a984

Browse files
committed
fix tag check
1 parent ca709cf commit 344a984

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-tag.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GH_CREDENTIALS }}
2727
- name: 🔖Build tag
28-
if: ${{ steps.checkTag.outputs.exists == 'false' }}
28+
if: ${{ steps.tag-check.outputs.exists == 'false' }}
2929
id: tag_version
3030
uses: mathieudutour/[email protected]
3131
with:
@@ -34,7 +34,7 @@ jobs:
3434
custom_tag: ${{ steps.gemspec_fetch.outputs.version }}
3535
tag_prefix: v
3636
- name: 📙 Github release
37-
if: ${{ steps.checkTag.outputs.exists == 'false' }}
37+
if: ${{ steps.tag-check.outputs.exists == 'false' }}
3838
uses: ncipollo/release-action@v1
3939
with:
4040
tag: ${{ steps.tag_version.outputs.new_tag }}

0 commit comments

Comments
 (0)