mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-13 13:39:02 +00:00
macOS codesigning: use stable Rust
The apple-codesign crate has a fairly aggressive MSRV policy, and the compiler itself still targets 10.12 which is well below the minimum version of macOS for aarch64. Just use stable.
This commit is contained in:
parent
7162822486
commit
80d53b129f
1 changed files with 2 additions and 2 deletions
4
.github/workflows/mac_codesign.yml
vendored
4
.github/workflows/mac_codesign.yml
vendored
|
@ -13,8 +13,8 @@ jobs:
|
|||
uses: dtolnay/rust-toolchain@1.73.0
|
||||
with:
|
||||
targets: x86_64-apple-darwin
|
||||
- name: Install Rust 1.79
|
||||
uses: dtolnay/rust-toolchain@1.79
|
||||
- name: Install Rust Stable
|
||||
uses: dtolnay/rust-toolchain@stable
|
||||
with:
|
||||
targets: aarch64-apple-darwin
|
||||
- name: build-and-codesign
|
||||
|
|
Loading…
Reference in a new issue