Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CI: Double-zip macOS app to keep executable bit. #834

Merged
merged 1 commit into from
Oct 3, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build-targets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: macos-arm64
path: artifact
path: ezQuake.zip

macos-intel-build:
if: github.repository == 'QW-Group/ezquake-source'
Expand All @@ -91,7 +91,7 @@ jobs:
- uses: actions/upload-artifact@v3
with:
name: macos-intel
path: artifact
path: ezQuake.zip

linux-build:
if: github.repository == 'QW-Group/ezquake-source'
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/scripts/homebrew.sh
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,7 @@ function create_bundle() {
echo "Bundled content types:"
find ezQuake.app/Contents -type f -exec file {} \;

mkdir artifact
mv ezQuake.app artifact/
zip -9 ezQuake.zip ezQuake.app
}

function build_intel() {
Expand Down