Skip to content

Commit

Permalink
Fix syntax in Release workflow condition (#108)
Browse files Browse the repository at this point in the history
  • Loading branch information
joaopalet authored Mar 5, 2024
1 parent 4b02871 commit 1d34de9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.CLI_RELEASE }}
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
- name: Publish packages to APT repo
if: ! contains(github.ref_name, '-')
if: contains(github.ref_name, '-') == false
env:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
GPG_PRIVATE_KEY_ID: ${{ steps.import_gpg.outputs.keyid }}
Expand Down

0 comments on commit 1d34de9

Please sign in to comment.