We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d5ad64b commit 11529efCopy full SHA for 11529ef
1 file changed
.github/workflows/release.yml
@@ -77,8 +77,12 @@ jobs:
77
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
78
steps:
79
- uses: actions/checkout@v3
80
- - name: Install Rust
+ - name: Install Rust for Intel
81
+ if: matrix.target == 'x86_64-unknown-linux-gnu' || matrix.target == 'x86_64-apple-darwin' || matrix.target == 'x86_64-pc-windows-msvc'
82
run: rustup update stable && rustup default stable
83
+ - name: Install Rust for ARM64
84
+ if: matrix.target == 'aarch64-apple-darwin'
85
+ run: rustup set profile minimal && rustup target add aarch64-apple-darwin && rustup toolchain install stable-aarch64-apple-darwin
86
- name: Install cargo-dist
87
run: ${{ matrix.install-dist }}
88
- name: Run cargo-dist
0 commit comments