We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fff0175 commit 8dc0591Copy full SHA for 8dc0591
.github/workflows/release.yml
@@ -54,18 +54,12 @@ jobs:
54
sudo apt install -qy gcc musl-tools
55
56
- name: Install Rust
57
- uses: actions-rs/toolchain@v1
+ uses: dtolnay/rust-toolchain@stable
58
with:
59
- toolchain: stable
60
- profile: minimal
61
- override: true
62
- target: ${{ matrix.target }}
+ targets: ${{ matrix.target }}
63
64
- name: Build target
65
- uses: actions-rs/cargo@v1
66
- with:
67
- command: build
68
- args: --release --locked --target ${{ matrix.target }}
+ run: cargo build --release --locked --target ${{ matrix.target }}
69
70
- name: Build archive
71
shell: bash
0 commit comments