commit 37bd81dc6bc813691dd748f09fd31c0dcf4cede9
parent d4bec651e9fbda0210f464a73b09e80640780651
Author: MTRNord <mtrnord1@gmail.com>
Date: Thu, 15 Feb 2024 22:14:48 +0100
Fix image name
Diffstat:
1 file changed, 17 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/build_docker.yaml b/.github/workflows/build_docker.yaml
@@ -42,7 +42,15 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
- images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
+ images: ${{ env.IMAGE_NAME }}
+ tags: |
+ type=schedule
+ type=ref,event=branch
+ type=ref,event=pr
+ type=semver,pattern={{version}}
+ type=semver,pattern={{major}}.{{minor}}
+ type=semver,pattern={{major}}
+ type=sha
# Install QEMU to enable cross-platform builds
- name: Setup QEMU
@@ -99,6 +107,14 @@ jobs:
uses: docker/metadata-action@v5
with:
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
+ tags: |
+ type=schedule
+ type=ref,event=branch
+ type=ref,event=pr
+ type=semver,pattern={{version}}
+ type=semver,pattern={{major}}.{{minor}}
+ type=semver,pattern={{major}}
+ type=sha
- name: Login to the Container registry
uses: docker/login-action@v3
with: