From 26b3c9797323eb35f190b450a8f2b5e7284f3518 Mon Sep 17 00:00:00 2001 From: bruvzg <7645683+bruvzg@users.noreply.github.com> Date: Thu, 18 Jul 2024 14:39:22 +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 9de129a448f..d058ca633bd 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -242,6 +242,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: @@ -249,5 +253,5 @@ jobs: removeArtifacts: true omitNameDuringUpdate: true omitBodyDuringUpdate: true - artifacts: "godot-angle-static*" + artifacts: "*.zip" artifactErrorsFailBuild: true