deployment: force usage of cross 0.2.1 for now (#755)

Locks cross in deployment builds to 0.2.1, as 0.2.2 seems to break some things for now.
This commit is contained in:
Clement Tsang 2022-06-25 22:22:30 -04:00 committed by GitHub
parent 2912859e52
commit 89f7705e21
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -132,6 +132,11 @@ jobs:
with:
key: ${{ matrix.info.target }}
- name: Install cross if needed
if: matrix.info.cross == true
run: |
cargo install cross --locked --version=0.2.1
- name: Build
uses: actions-rs/cargo@v1
with:
@ -273,6 +278,11 @@ jobs:
- name: Enable Rust cache
uses: Swatinem/rust-cache@cb2cf0cc7c5198d3364b9630e2c3d457f160790c # 1.4.0
- name: Install cross if needed
if: matrix.info.cross == true
run: |
cargo install cross --locked --version=0.2.1
- name: Build
uses: actions-rs/cargo@v1
with: