mirror of
https://github.com/actions-rust-lang/setup-rust-toolchain.git
synced 2024-12-26 00:52:17 +01:00
ci: fix conditional
This commit is contained in:
parent
c6086ae6e5
commit
aa089182f2
1 changed files with 1 additions and 1 deletions
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
|
@ -63,7 +63,7 @@ jobs:
|
|||
run: echo '${{steps.toolchain.outputs.rustup-version}}'
|
||||
|
||||
- name: Check lack of toolchain input or file results in stable
|
||||
if: !matrix.write-toolchain-file && matrix.rust == null
|
||||
if: matrix.write-toolchain-file == false && matrix.rust == null
|
||||
shell: bash
|
||||
run: |-
|
||||
rustcv="$(rustc --version)"
|
||||
|
|
Loading…
Reference in a new issue