Skip to content

Commit be6d238

Browse files
authored
ci: Fix invalid YAML
1 parent d95d6d9 commit be6d238

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/push-images.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
IMAGE_NAME: ghcr.io/tomkerkhove/microservices-with-api-management-monolith
2525
steps:
2626
- uses: actions/checkout@v2
27-
- name: Determine image tag from Release (${GITHUB_REF#refs/*/})
27+
- name: Determine image tag from Release (${{ github.ref }})
2828
if: ${{ github.event_name == 'release' }}
29-
run: echo "IMAGE_TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV"
29+
run: echo "IMAGE_TAG=${{ github.ref }}" >> $GITHUB_ENV
3030
- name: Determine image tag from manual trigger (${{ inputs.imageTag }})
3131
if: ${{ github.event_name == 'workflow_dispatch' }}
32-
run: echo "IMAGE_TAG=${{ inputs.imageTag }}" >> $GITHUB_ENV"
32+
run: echo "IMAGE_TAG=${{ inputs.imageTag }}" >> $GITHUB_ENV
3333
- name: Docker Login
3434
uses: docker/[email protected]
3535
with:

0 commit comments

Comments
 (0)