Skip to content

Commit b99abe1

Browse files
committed
chore: show MSRV output
1 parent e7c851c commit b99abe1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@ jobs:
1717
msrv: ${{ steps.msrv.outputs.MSRV }}
1818
steps:
1919
- uses: actions/checkout@v4
20-
- name: Extract MSRV from Cargo.toml
20+
- name: Get MSRV from rust-toolchain
2121
id: msrv
2222
run: |
23-
#MSRV=$(cargo metadata --format-version 1 --no-deps | jq -r 'first(.packages[].rust_version | select(.))')
2423
MSRV=$(cat ./rust-toolchain)
25-
echo "MSRV=$MSRV" >> "$GITHUB_OUTPUT"
24+
echo "MSRV=$MSRV" | tee --append "$GITHUB_OUTPUT"
2625
2726
#linux:
2827
# strategy:

0 commit comments

Comments
 (0)