Skip to content

Commit

Permalink
Fix release files
Browse files Browse the repository at this point in the history
  • Loading branch information
pkdawson committed Aug 14, 2024
1 parent 7349e64 commit 5b5081b
Showing 1 changed file with 11 additions and 4 deletions.
15 changes: 11 additions & 4 deletions .github/workflows/gdext.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 5b5081b

Please sign in to comment.