From 7438761db90b67dcbbd894f497d18c7bb093a26f Mon Sep 17 00:00:00 2001 From: ghorsington Date: Mon, 4 Jul 2022 00:36:36 +0300 Subject: [PATCH] Add missing zipping --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a18e2951131bf..07f077bb03a36 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -98,7 +98,8 @@ jobs: id: collect-info run: | mkdir release - find artifacts -name "*.zip" -exec mv {} release \; + cd artifacts + for i in */; do (cd "${i%/}" && zip -0 -r "../../release/${i%/}.zip" *) & done; wait echo "::set-output name=release_tag::$(date +%Y%m%d).$GITHUB_RUN_NUMBER" - name: Create release uses: marvinpinto/action-automatic-releases@latest