Skip to content

Commit

Permalink
Remove incorrect -v flag to unzip
Browse files Browse the repository at this point in the history
This doesn't perform a verbose unzip of the archive, it just performs a
verbose listing of the archive contents, which is not what we wanted.
  • Loading branch information
lunkwill42 committed Dec 17, 2024
1 parent f5d92b5 commit 407c5c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
id: details
run: |
if [ -f version.zip ]; then
unzip -v version.zip
unzip version.zip
fi
echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT
echo "nav_version=$(cat version.txt)" >> $GITHUB_OUTPUT
Expand Down

0 comments on commit 407c5c1

Please sign in to comment.