Skip to content

Commit

Permalink
fix(github-actions): condition
Browse files Browse the repository at this point in the history
  • Loading branch information
amtins committed Jun 21, 2023
1 parent a8358cc commit eb34ec0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/npm-publish-github-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Check if tag exists
env:
AVAILABLE_VERSIONS: npm view @amtins/super-duper-ci versions --json
if: ${{!contains(fromJSON(env.AVAILABLE_VERSIONS), inputs.tag)}}
if: ! contains(fromJSON(env.AVAILABLE_VERSIONS), inputs.tag)
run: exit 1;

- name: Release tag
Expand Down

0 comments on commit eb34ec0

Please sign in to comment.