From 712ec7ed63ad74e985199e3b6fec6342ff69c55d Mon Sep 17 00:00:00 2001 From: Ryan Stecker Date: Sun, 3 Mar 2024 18:17:30 -0600 Subject: [PATCH] Fix .zip.zip --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4844afc..71d565b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -146,6 +146,7 @@ jobs: ZIP_FILENAME="${{ env.PROJECT }}-${FILENAME}-${PLATFORM,}.zip" echo "ZIP_FILENAME=${ZIP_FILENAME}" >> $GITHUB_ENV + echo "ARTIFACT_NAME=${{ env.PROJECT }}-${FILENAME}-${PLATFORM,}" >> $GITHUB_ENV - name: Package release - Windows if: github.event_name == 'push' && github.ref == 'refs/heads/master' && startsWith(matrix.os, 'windows-latest') @@ -161,5 +162,5 @@ jobs: name: Upload artifacts if: github.event_name == 'push' && github.ref == 'refs/heads/master' && (startsWith(matrix.os, 'windows-latest') || startsWith(matrix.os, 'ubuntu-latest')) with: - name: "${{ env.ZIP_FILENAME }}" + name: "${{ env.ARTIFACT_NAME }}" path: "extension/build/package/${{ env.ZIP_FILENAME }}"