Skip to content

Commit

Permalink
Missing quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
Bykow committed Apr 25, 2024
1 parent 6cc6e4e commit cdbaa5c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-nym-vpn.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
- name: Binary name
run: |
echo "Checking if tag exists or workflow was manually launched. Setting BINARY var"
if [[ -z ${{ github.event.inputs.binary }} ]]; then
if [[ -z "${{ github.event.inputs.binary }}" ]]; then
echo "BINARY=$(echo ${{ github.ref_name }} | sed -E 's/-v[0-9]+.[0-9]+.[0-9]+*//g')" >> $GITHUB_ENV
else
echo "BINARY=${{ github.event.inputs.binary }}" >> $GITHUB_ENV
Expand Down

0 comments on commit cdbaa5c

Please sign in to comment.