Skip to content

Commit ef608e7

Browse files
committed
Fix version output in Github workflow
1 parent da389a8 commit ef608e7

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/rust.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,14 @@ jobs:
1111
quickcheck:
1212
runs-on: ubuntu-latest
1313
outputs:
14-
version: ${{ steps.rustversion.outputs.rustversion }}
14+
version: ${{ steps.rustversion.outputs.version }}
1515
steps:
1616
- uses: actions/checkout@v4
1717
- run: cargo check
1818
- run: cargo pkgid
1919
- run: 'echo "$(cargo pkgid | cut -d# -f2)"'
2020
- id: rustversion
21-
run: 'echo "name=rustversion::$(cargo pkgid | cut -d# -f2)" >> $GITHUB_OUTPUT'
21+
run: 'echo "version=$(cargo pkgid | cut -d# -f2)" >> $GITHUB_OUTPUT'
2222
build:
2323
runs-on: ubuntu-latest
2424
steps:

0 commit comments

Comments
 (0)