From 3ad31e79de5c27aa1c0b6c6dfb343c30c8a48825 Mon Sep 17 00:00:00 2001 From: David Schneller Date: Wed, 22 May 2024 20:46:12 +0200 Subject: [PATCH] Build the correct notebook --- .github/workflows/run-and-deploy-docker.yaml | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-and-deploy-docker.yaml b/.github/workflows/run-and-deploy-docker.yaml index 078e803..6165222 100644 --- a/.github/workflows/run-and-deploy-docker.yaml +++ b/.github/workflows/run-and-deploy-docker.yaml @@ -30,17 +30,27 @@ jobs: uses: docker/metadata-action@v4 with: images: seissol/training + - name: Prepare x86-64 label + uses: docker/metadata-action@v4 + with: + flavor: | + suffix=x86_64 - name: Build and push Docker image (x86-64) uses: docker/build-push-action@v4 with: context: . - file: Dockerfile_jupyterlab + file: Dockerfile platforms: linux/amd64 push: true tags: ${{ steps.meta.outputs.tags }} cache-from: type=gha cache-to: type=gha,mode=max labels: ${{ steps.meta.outputs.labels }} + - name: Prepare ARM label + uses: docker/metadata-action@v4 + with: + flavor: | + suffix=arm - name: Build and push Docker image (ARM) uses: docker/build-push-action@v4 with: @@ -52,3 +62,4 @@ jobs: cache-from: type=gha cache-to: type=gha,mode=max labels: ${{ steps.meta.outputs.labels }} +