We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c08373 commit f085efaCopy full SHA for f085efa
.github/workflows/build.yml
@@ -20,28 +20,20 @@ jobs:
20
steps:
21
- uses: actions/checkout@v4
22
23
- - uses: actions-rs/toolchain@v1
24
- with:
25
- toolchain: nightly
26
- override: true
27
-
28
- - uses: Swatinem/rust-cache@v1
29
30
- key: ${{ matrix.config.name }}
31
- target-dir: ./target
+ - uses: Swatinem/rust-cache@v2
32
33
- name: Build
34
run: |
35
${{ matrix.config.static }}
36
- cargo +nightly build --release
37
+ cargo build --release
+
38
- name: Move to output folder
39
shell: bash
40
working-directory: ${{ github.workspace }}
41
42
mkdir ./out
43
mv ${{ matrix.config.out_paths }} ./out
44
45
- name: Upload Artifacts
46
uses: actions/upload-artifact@v4
47
with:
0 commit comments