Skip to content

Commit 1b77c77

Browse files
committed
cd
1 parent d868b3b commit 1b77c77

3 files changed

Lines changed: 5 additions & 6 deletions

File tree

.github/workflows/common/compute-installer-hash.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
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
@@ -16,4 +16,4 @@ jobs:
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

.github/workflows/common/extract-version.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ jobs:
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

.github/workflows/main.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
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 }}"

0 commit comments

Comments
 (0)