Skip to content

Commit b36dcd7

Browse files
Changed output param name #patch
1 parent 70c8218 commit b36dcd7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/bump-tag.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
permissions:
2727
contents: write
2828
outputs:
29-
version: ${{ steps.tag.outputs.new_tag }}
29+
new_tag: ${{ steps.tag.outputs.new_tag }}
3030
steps:
3131
- uses: actions/checkout@v4
3232
with:
@@ -39,4 +39,3 @@ jobs:
3939
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4040
WITH_V: true
4141
DEFAULT_BUMP: ${{ inputs.default_bump }}
42-
- run: echo "${{ toJson(steps.tag.outputs) }}"

.github/workflows/feature-release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ jobs:
99
permissions:
1010
contents: write
1111
uses: ./.github/workflows/bump-tag.yml
12+
1213
build-and-publish:
1314
needs: bump-tag-version
1415
permissions:
1516
packages: write
1617
contents: read
1718
uses: ./.github/workflows/create-docker-image.yml
1819
with:
19-
version: ${{ needs.bump-tag-version.outputs.version }}
20+
version: ${{ needs.bump-tag-version.outputs.new_tag }}

0 commit comments

Comments
 (0)