mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-22 20:23:12 +00:00
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:
parent
2912859e52
commit
89f7705e21
1 changed files with 10 additions and 0 deletions
10
.github/workflows/build_releases.yml
vendored
10
.github/workflows/build_releases.yml
vendored
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue