File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 55 name : Compute installer hash
66 runs-on : ubuntu-latest
77 outputs :
8- hash : ${{ steps.get_hash.outputs.HASH }}
8+ HASH : ${{ steps.get_hash.outputs.HASH }}
99 steps :
1010 - uses : actions/checkout@v5
1111 - name : Download installer artifact
1616 id : get_hash
1717 run : |
1818 HASH=$(sha256sum winri_*_x64-setup.exe | awk '{print $1}')
19- echo "hash =$HASH" >> $GITHUB_OUTPUT
19+ echo "HASH =$HASH" >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change 55 name : Extract version from Cargo.toml
66 runs-on : ubuntu-latest
77 outputs :
8- version : ${{ steps.get_version.outputs.VERSION }}
8+ VERSION : ${{ steps.get_version.outputs.VERSION }}
99 steps :
1010 - uses : actions/checkout@v5
1111 - name : Extract version from Cargo.toml
1212 id : get_version
1313 run : |
1414 VERSION=$(grep -m1 '^version =' Cargo.toml | sed 's/version = "\(.*\)"/\1/')
15- echo "version =$VERSION" >> $GITHUB_OUTPUT
15+ echo "VERSION =$VERSION" >> $GITHUB_OUTPUT
Original file line number Diff line number Diff line change 1919 runs-on : ubuntu-latest
2020 steps :
2121 - uses : actions/checkout@v5
22- - name : extract version
23- uses : ./.github/workflows/common/extract-version.yml
22+ - uses : ./.github/workflows/common/extract-version.yml
2423 - name : show version
2524 run : echo "Version is ${{ steps.get_version.outputs.VERSION }}"
You can’t perform that action at this time.
0 commit comments