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 2815a70 commit e6f90b0Copy full SHA for e6f90b0
1 file changed
.github/workflows/docker-publish.yaml
@@ -23,9 +23,13 @@ jobs:
23
- name: Set up QEMU
24
uses: docker/setup-qemu-action@v3
25
26
+ - name: Normalize Reference Name
27
+ id: normalize
28
+ run: 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
- tags: ${{ github.repository }}:${{ github.ref_name }}
34
+ tags: ${{ github.repository }}:${{ steps.normalize.outputs }}
35
platforms: linux/amd64,linux/arm64
0 commit comments