Skip to content

Commit

Permalink
⚗️ Attempts ACR container push
Browse files Browse the repository at this point in the history
  • Loading branch information
Lissy93 committed Jan 24, 2022
1 parent 7c9b4ec commit 4be9e1f
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# Builds, scans and tests the multi-architecture docker image
# Then releases it to the DockerHub, GHCR and Quay registries
name: 🐳 Build + Publish Multi-Platform Image

on:
Expand Down Expand Up @@ -31,9 +33,10 @@ jobs:
images: |
${{ env.DH_IMAGE }}
ghcr.io/${{ env.GH_IMAGE }}
${{ secrets.ACR_SERVER }}/${{ secrets.ACR_USERNAME }}
tags: |
type=ref,event=tag,suffix={{tag}}
type=semver,pattern={{raw}},value=${{ steps.package-version.outputs.version }},prefix=release-
type=ref,event=tag,prefix=release-,suffix={{tag}}
type=semver,pattern={{raw}},value=${{ steps.package-version.outputs.version }}
labels: |
maintainer=Lissy93
org.opencontainers.image.title=Dashy
Expand Down Expand Up @@ -61,13 +64,20 @@ jobs:
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: 🔑 Login to Azure Container Registry
uses: docker/login-action@v1
with:
registry: ${{ secrets.ACR_SERVER }}
username: ${{ secrets.ACR_USERNAME }}
password: ${{ secrets.ACR_PASSWORD }}

- name: ⚒️ Build and push
uses: docker/build-push-action@v2
with:
context: .
file: ./docker/Dockerfile-multi-arch
platforms: linux/amd64,linux/arm64,linux/arm/v7
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
push: true

0 comments on commit 4be9e1f

Please sign in to comment.