Skip to content

Commit 8b71c0e

Browse files
ci: Fix empty toolchain expression
1 parent c006411 commit 8b71c0e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/launcher.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,16 @@ jobs:
3535
uses: actions/checkout@v4.2.2
3636
- name: Setup Rust
3737
uses: dtolnay/rust-toolchain@b3b07ba8b418998c39fb20f53e8b695cdcc8de1b
38+
id: rust
3839
with:
3940
toolchain: ${{ matrix.toolchain }}
4041
- name: Cache dependencies
4142
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6
4243
with:
43-
key: ${{ steps.toolchain.outputs.cachekey }}
44+
key: ${{ steps.rust.outputs.cachekey }}
4445
workspaces: "./Launcher -> target"
4546
- name: Build
46-
run: cargo +${{ steps.toolchain.outputs.name }} build --verbose
47+
run: cargo +${{ steps.rust.outputs.name }} build --verbose
4748
- name: Upload artifact
4849
uses: actions/upload-artifact@v4.6.2
4950
with:

0 commit comments

Comments
 (0)