From c2b257ae7cf38e4b460253650e081285ca286f1b Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Thu, 18 Jul 2024 12:38:11 +0300 Subject: [PATCH] [CI] Fix upload action. --- .github/workflows/ci.yaml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f5e065e..45a1539 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -167,6 +167,10 @@ jobs: - name: Download Artifacts uses: actions/download-artifact@v4 + - name: ZIP Artifacts + run: | + for i in */; do (cd "${i%/}"; zip -r "../${i%/}.zip" .; cd ..); done + - name: Create Release uses: ncipollo/release-action@v1 with: @@ -174,5 +178,5 @@ jobs: removeArtifacts: true omitNameDuringUpdate: true omitBodyDuringUpdate: true - artifacts: "godot-nir-static*" + artifacts: "*.zip" artifactErrorsFailBuild: true