fix: sparkle bin path on macOS 13/14 #194
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: Build Send! | |
on: [push, pull_request] | |
jobs: | |
TestCI: | |
runs-on: macos-14 | |
steps: | |
- name: Checkout π | |
uses: actions/checkout@v4 | |
- name: Install latest stable Rust toolchain π¦ | |
uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
targets: 'aarch64-apple-darwin,x86_64-apple-darwin' | |
- name: Setup latest Xcode βοΈ | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: latest | |
- name: Import Certificates π | |
uses: apple-actions/import-codesign-certs@v2 | |
with: | |
p12-file-base64: ${{ secrets.CERTIFICATES_P12 }} | |
p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }} | |
- name: Debug Build π¨ | |
run: xcodebuild -scheme Send -destination "platform=macOS" -configuration Debug CODE_SIGN_IDENTITY=- | xcpretty && exit ${PIPESTATUS[0]} |