Skip to content

Commit

Permalink
chore: fix build action
Browse files Browse the repository at this point in the history
  • Loading branch information
BigJk committed Feb 4, 2024
1 parent e8fc6c0 commit 8d8af86
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -192,6 +192,11 @@ jobs:
path: build/release
- name: Check release files
run: ls -hal build/release/
# Fix for https://github.com/actions/upload-artifact/issues/38
- name: Change Permissions
run: |
find build/release -type f -name 'snd' -exec chmod +x {} \;
find build/release -type f -name 'Sales & Dungeons' -exec chmod +x {} \;
- name: Zip release folders
run: cd build/release && { for i in */; do zip -r "${i%/}.zip" "$i"; done }
- name: Create Release
Expand Down

0 comments on commit 8d8af86

Please sign in to comment.