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