fix(ci): add docker build template

This commit is contained in:
2023-12-12 10:30:41 +02:00
parent a72dbed22a
commit 1e2e5da07c

View File

@@ -26,7 +26,18 @@ jobs:
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Docker meta
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.GITHUB_REPOSITORY }}
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Login in Private Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ${{ inputs.registry }}
@@ -37,5 +48,7 @@ jobs:
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ inputs.registry }}/${{ env.GITHUB_REPOSITORY }}:latest, ${{ inputs.registry }}/${{ env.GITHUB_REPOSITORY }}:${{ env.GITHUB_REF_NAME }}-${{ env.GITHUB_RUN_ID }}
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
annotations: ${{ steps.meta.outputs.annotations }}