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 c006411 commit 8b71c0eCopy full SHA for 8b71c0e
.github/workflows/launcher.yml
@@ -35,15 +35,16 @@ jobs:
35
uses: actions/checkout@v4.2.2
36
- name: Setup Rust
37
uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b
38
+ id: rust
39
with:
40
toolchain: ${{ matrix.toolchain }}
41
- name: Cache dependencies
42
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6
43
- key: ${{ steps.toolchain.outputs.cachekey }}
44
+ key: ${{ steps.rust.outputs.cachekey }}
45
workspaces: "./Launcher -> target"
46
- name: Build
- run: cargo +${{ steps.toolchain.outputs.name }} build --verbose
47
+ run: cargo +${{ steps.rust.outputs.name }} build --verbose
48
- name: Upload artifact
49
uses: actions/upload-artifact@v4.6.2
50
0 commit comments