Skip to content

Commit

Permalink
ci: use x86_64 brew on x86_64-apple-darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
xhyrom committed Jul 21, 2024
1 parent 2b968cb commit e44700a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,11 @@ jobs:
- target: x86_64-apple-darwin
runner: macos-latest
archive: tar.gz
bootstrap: arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" && arch -x86_64 /usr/local/bin/brew brew install openssl@3 && echo "OPENSSL_DIR=$(brew --prefix openssl@3)" >> $GITHUB_ENV
bootstrap: |
arch -x86_64 /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
arch -x86_64 /usr/local/bin/brew brew install openssl@3
echo 'eval "$(/usr/local/bin/brew shellenv)"') >> /Users/runner/.bash_profile
echo "OPENSSL_DIR=$(/usr/local/bin/brew --prefix openssl@3)" >> $GITHUB_ENV
- target: aarch64-apple-darwin
runner: macos-latest
archive: tar.gz
Expand Down

0 comments on commit e44700a

Please sign in to comment.