mirror of
https://github.com/dtolnay/install.git
synced 2024-11-22 00:19:31 +01:00
Add input for selecting a Rust toolchain
This commit is contained in:
parent
a68a881155
commit
bd7d49ba2f
1 changed files with 7 additions and 1 deletions
8
.github/workflows/build.yml
vendored
8
.github/workflows/build.yml
vendored
|
@ -18,6 +18,10 @@ on:
|
|||
path:
|
||||
required: false
|
||||
type: string
|
||||
toolchain:
|
||||
required: false
|
||||
type: string
|
||||
default: stable
|
||||
secrets:
|
||||
private_key:
|
||||
required: true
|
||||
|
@ -37,7 +41,9 @@ jobs:
|
|||
ref: ${{inputs.ref}}
|
||||
path: ${{inputs.crate}}
|
||||
if: inputs.git
|
||||
- uses: dtolnay/rust-toolchain@stable
|
||||
- uses: dtolnay/rust-toolchain@master
|
||||
with:
|
||||
toolchain: ${{inputs.toolchain}}
|
||||
- run: cargo install --force ${{inputs.git && format('--path={0}', inputs.path || '.') || inputs.crate}} --bin ${{inputs.bin || inputs.crate}}
|
||||
working-directory: ${{inputs.git && inputs.crate || '.'}}
|
||||
- id: which
|
||||
|
|
Loading…
Reference in a new issue