Skip to content

Commit

Permalink
feat: add executable permissions to paseto_cli in npm_dependency_publ…
Browse files Browse the repository at this point in the history
…ish workflow
  • Loading branch information
rrrodzilla committed Jul 25, 2024
1 parent 4cc30ff commit ca90be8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/npm_dependency_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,13 @@ jobs:
# Extract the binary
if [[ "${{ inputs.ext }}" == "zip" ]]; then
7z x ${{ inputs.name }}.${{ inputs.ext }} -obin
chmod +x bin/paseto_cli.exe
else
tar -xzf ${{ inputs.name }}.${{ inputs.ext }} -C bin
chmod +x bin/paseto_cli
fi
# Remove the archive
rm ${{ inputs.name }}.${{ inputs.ext }}
chmod +x bin/paseto_cli
- name: Publish Binary
run: |
Expand Down

0 comments on commit ca90be8

Please sign in to comment.