From 407c5c1ddc2683dc3aba66f77b402b8826f30497 Mon Sep 17 00:00:00 2001 From: Morten Brekkevold Date: Tue, 17 Dec 2024 17:20:28 +0100 Subject: [PATCH] Remove incorrect `-v` flag to unzip 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. --- .github/workflows/publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 9b61a44..f790338 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -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