From b617292e7b26b5bffd7d2390b319e748b3610098 Mon Sep 17 00:00:00 2001 From: Thegan Govender Date: Wed, 19 Jul 2023 18:54:50 +0200 Subject: [PATCH] Update docker-image-arm.yml --- .github/workflows/docker-image-arm.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/docker-image-arm.yml b/.github/workflows/docker-image-arm.yml index bfaa4f9..6a1c4f0 100644 --- a/.github/workflows/docker-image-arm.yml +++ b/.github/workflows/docker-image-arm.yml @@ -20,14 +20,14 @@ jobs: uses: docker/build-push-action@v2 with: context: . - dockerfile: ./docker-arm # Specify the path to the 'docker-arm' Dockerfile + dockerfile: ./Dockerfile-arm push: true - tags: cyfershepard/jellystat:unstable-arm # Tag for ARM32 image + tags: cyfershepard/jellystat:unstable-arm - name: Build Docker image for AMD64 (optional) uses: docker/build-push-action@v2 with: context: . - dockerfile: ./Dockerfile-arm # Specify the path to the default Dockerfile for AMD64 + dockerfile: ./Dockerfile-arm push: true - tags: cyfershepard/jellystat:arm # Tag for AMD64 image + tags: cyfershepard/jellystat:arm