From df6301a229b85b3ca91989ae12646313e8ed168d Mon Sep 17 00:00:00 2001 From: Alexander Lopez Date: Wed, 10 Jul 2024 21:05:37 -0700 Subject: [PATCH] fix git archive command --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 117957f..3a2aa05 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,7 +19,7 @@ jobs: - name: Create Release Zip run: | git rm -r --cached tests samples images res vcpkg etc || true - git archive $( git write-tree ) --format=zip --output=str_view-${GITHUB_REF#refs/tags/}.zip release-${GITHUB_REF#refs/tags/} + git archive $( git write-tree ) --format=zip --output=str_view-${GITHUB_REF#refs/tags/}.zip echo "ZIP_FILE=str_view-${GITHUB_REF#refs/tags/}.zip" >> $GITHUB_ENV - name: Create Release