From 4b854d4fa79e39c40f8e2d986ae5166da3353ebe Mon Sep 17 00:00:00 2001 From: "hinto.janai" Date: Sat, 15 Jul 2023 11:10:32 -0400 Subject: [PATCH] ci: `chmod +x` macos binaries --- .github/workflows/ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e6abddc..3caafff 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,6 +51,8 @@ jobs: if [ "$RUNNER_OS" == "macOS" ]; then cargo bundle --all-features --release cargo bundle --all-features --release --target aarch64-apple-darwin + chmod +x target/release/bundle/osx/Gupax.app/Contents/MacOS/gupax + chmod +x target/aarch64-apple-darwin/release/bundle/osx/Gupax.app/Contents/MacOS/gupax elif [ "$RUNNER_OS" == "Linux" ]; then cargo build --all-features --release --target x86_64-unknown-linux-gnu else