Skip to content

Commit

Permalink
fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
bitbrain committed Oct 4, 2021
1 parent 3c8aa50 commit 4f34241
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_CREDENTIALS }}
- name: 馃敄Build tag
if: ${{ !steps.checkTag.outputs.exists }}
if: ${{ steps.checkTag.outputs.exists == 'false' }}
id: tag_version
uses: mathieudutour/github-tag-action@v5.6
with:
Expand All @@ -34,7 +34,7 @@ jobs:
custom_tag: ${{ steps.gemspec_fetch.outputs.version }}
tag_prefix: v
- name: 馃摍 Github release
if: ${{ !steps.checkTag.outputs.exists }}
if: ${{ steps.checkTag.outputs.exists == 'false' }}
uses: ncipollo/release-action@v1
with:
tag: ${{ steps.tag_version.outputs.new_tag }}
Expand Down

0 comments on commit 4f34241

Please sign in to comment.