Skip to content

Commit 4f34241

Browse files
committed
fix check
1 parent 3c8aa50 commit 4f34241

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 }}
28+
if: ${{ steps.checkTag.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 }}
37+
if: ${{ steps.checkTag.outputs.exists == 'false' }}
3838
uses: ncipollo/release-action@v1
3939
with:
4040
tag: ${{ steps.tag_version.outputs.new_tag }}

0 commit comments

Comments
 (0)