From 5b5081bc660d0a04325573861bc4e4420a0c29ba Mon Sep 17 00:00:00 2001 From: Patrick Dawson Date: Wed, 14 Aug 2024 20:02:00 +0200 Subject: [PATCH] Fix release files --- .github/workflows/gdext.yml | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) diff --git a/.github/workflows/gdext.yml b/.github/workflows/gdext.yml index b71218c..3db368c 100644 --- a/.github/workflows/gdext.yml +++ b/.github/workflows/gdext.yml @@ -459,12 +459,19 @@ jobs: - uses: actions/download-artifact@v4 - shell: bash - run: ls -al + run: | + ls -R + for x in *; do + echo $x + pushd $x + zip -9 -r ../$x.zip * + popd + done - uses: softprops/action-gh-release@v2 with: draft: true files: | - imgui-godot-* - AssetLib-* - pdbs* + imgui-godot-*.zip + AssetLib-*.zip + pdbs.zip