Skip to content

Commit

Permalink
fix: correct extraction path in npm_dependency_publish workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rrrodzilla committed Jul 24, 2024
1 parent 7be2023 commit 7970d2e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/npm_dependency_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
# Extract the binary
if [[ "${{ inputs.ext }}" == "zip" ]]; then
7z x ${{ inputs.name }}.${{ inputs.ext }} -o bin
7z x ${{ inputs.name }}.${{ inputs.ext }} -obin
else
tar -xzf ${{ inputs.name }}.${{ inputs.ext }}/${{ inputs.name }}.${{ inputs.ext }} -C bin
fi
Expand Down

0 comments on commit 7970d2e

Please sign in to comment.