From 4cf961f2df13319ac9a90825ef5a26b99e517dc0 Mon Sep 17 00:00:00 2001 From: Manuel Ruwe Date: Mon, 19 Dec 2022 21:36:39 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20Fix=20typo=20in=20deployment=20a?= =?UTF-8?q?ction=20workflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docker.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index aaa1a86..184de84 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -43,11 +43,17 @@ jobs: with: # list of Docker images to use as base name for tags images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} + + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2 - name: Login to GHCR uses: docker/login-action@v2 with: - registry: ${{ env.REGRISTRY }} + registry: ${{ env.REGISTRY }} username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} @@ -59,3 +65,5 @@ jobs: push: true tags: ${{ steps.meta.outputs.tags }} labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max