mirror of
https://github.com/dtolnay/install.git
synced 2024-11-22 16:29:32 +01:00
Fix version grep interpolation syntax
This commit is contained in:
parent
5579dcabc3
commit
96eb011dc9
1 changed files with 1 additions and 1 deletions
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -24,7 +24,7 @@ jobs:
|
||||||
- id: which
|
- id: which
|
||||||
run: echo "::set-output name=which::$(which ${{inputs.bin || inputs.crate}})"
|
run: echo "::set-output name=which::$(which ${{inputs.bin || inputs.crate}})"
|
||||||
- id: version
|
- id: version
|
||||||
run: echo "::set-output name=version::$(cargo install --list | grep -o '^{{inputs.crate}} \([^ :]\)\+')"
|
run: echo "::set-output name=version::$(cargo install --list | grep -o '^${{inputs.crate}} \([^ :]\)\+')"
|
||||||
- run: echo "$PRIVATE_KEY" | gpg --import
|
- run: echo "$PRIVATE_KEY" | gpg --import
|
||||||
env:
|
env:
|
||||||
PRIVATE_KEY: ${{secrets.private_key}}
|
PRIVATE_KEY: ${{secrets.private_key}}
|
||||||
|
|
Loading…
Reference in a new issue