Skip to content

Commit 69ad409

Browse files
committed
zxca
1 parent 2d93e80 commit 69ad409

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
with:
6161
dotnet-version: ${{ env.dotnet-sdk-version }}
6262
- name: 'Extract version from branch name'
63-
id: versioning
63+
id: extract-version
6464
uses: './.github/actions/extract-version'
6565
with:
6666
branch-name: ${{ github.ref_name }}
@@ -85,7 +85,7 @@ jobs:
8585
id: format-version
8686
uses: ./.github/actions/format-version
8787
with:
88-
version: ${{ steps.versioning.outputs.version }}
88+
version: ${{ steps.extract-version.outputs.version }}
8989
patch: ${{ github.run_number }}
9090
build-number: ${{ steps.create-build-number.outputs.build-number }}
9191
sha: ${{ github.sha }}

.github/workflows/promote-branch.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
name: 'Extract version (new)'
3131
runs-on: ubuntu-latest
3232
outputs:
33-
friendly-version: ${{ steps.format-version.outputs.friendly-version }}
33+
friendly-version: ${{ steps.extract-version.outputs.version }}
3434
steps:
3535
- name: 'Checkout ${{ github.head_ref || github.ref }}'
3636
uses: actions/checkout@v5
@@ -39,7 +39,7 @@ jobs:
3939
with:
4040
dotnet-version: ${{ env.dotnet-sdk-version }}
4141
- name: 'Extract version from branch name'
42-
id: versioning
42+
id: extract-version
4343
uses: './.github/actions/extract-version'
4444
with:
4545
branch-name: ${{ github.ref_name }}

0 commit comments

Comments
 (0)