Merge pull request #164 from Electric-Coin-Company/ci-binary-preview-… #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Binary preview | |
on: | |
push: | |
branches: | |
- 'release/**' | |
- 'hotfix/**' | |
jobs: | |
build: | |
name: Build | |
runs-on: macos-12 | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create, or merge into, the corresponding preview branch | |
run: git switch -c 'preview/${{ github.ref_name }}' || git switch -m 'preview/${{ github.ref_name }}' | |
# https://github.com/actions/runner-images/blob/main/images/macos/macos-12-Readme.md#xcode | |
- name: Select the required Xcode version | |
run: sudo xcode-select -s '/Applications/Xcode_13.4.1.app/Contents/Developer' | |
- name: Install the required Rust targets | |
run: make install | |
- name: Build the binaries | |
run: make xcframework | |
- uses: stefanzweifel/git-auto-commit-action@v5 | |
with: | |
commit_message: 'make xcframework' |