We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e6f90b0 commit 7730dc9Copy full SHA for 7730dc9
1 file changed
.github/workflows/docker-publish.yaml
@@ -25,11 +25,11 @@ jobs:
25
26
- name: Normalize Reference Name
27
id: normalize
28
- run: echo ${{ github.ref_name }} | sed 's/[\/\.]/-/g' >> $GITHUB_OUTPUT
+ run: echo "name=$(echo ${{ github.ref_name }} | sed 's/[\/\.]/-/g')" >> $GITHUB_OUTPUT
29
30
- name: Build and Push Docker Image
31
uses: docker/build-push-action@v6
32
with:
33
push: true
34
- tags: ${{ github.repository }}:${{ steps.normalize.outputs }}
+ tags: ${{ github.repository }}:${{ steps.normalize.outputs.name }}
35
platforms: linux/amd64,linux/arm64
0 commit comments