Skip to content

Commit bdb59c2

Browse files
update github action to set tag and alias in single step
1 parent 5c872ab commit bdb59c2

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/newbuild.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -425,8 +425,9 @@ jobs:
425425
steps:
426426
- name: Create Tag
427427
id: tag
428-
run: echo "tag=${{ needs.setup.outputs.tag-prefix }}-${{ matrix.tag }}" >> $GITHUB_OUTPUT
429-
run: echo "tag-alias=${{ needs.setup.outputs.tag-alias-prefix }}-${{ matrix.tag }}" >> $GITHUB_OUTPUT
428+
run: |
429+
echo "tag=${{ needs.setup.outputs.tag-prefix }}-${{ matrix.tag }}" >> $GITHUB_OUTPUT
430+
echo "tag-alias=${{ needs.setup.outputs.tag-alias-prefix }}-${{ matrix.tag }}" >> $GITHUB_OUTPUT
430431
- uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
431432
with:
432433
registry: ${{ env.REGISTRY }}

0 commit comments

Comments
 (0)