We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 283b523 commit a4543e8Copy full SHA for a4543e8
.github/workflows/docker-marimo-image.yml
@@ -6,6 +6,9 @@ on:
6
jobs:
7
build:
8
runs-on: ubuntu-latest
9
+ strategy:
10
+ matrix:
11
+ architecture: [amd64, arm64]
12
if: github.repository == 'stfc/janus-core'
13
permissions:
14
packages: write
@@ -29,5 +32,5 @@ jobs:
29
32
file: ./containers/Dockerfile.marimo
30
33
push: true
31
34
tags: |
- ghcr.io/stfc/janus-core/marimo:${{ github.sha }}
- ghcr.io/stfc/janus-core/marimo:latest
35
+ ghcr.io/stfc/janus-core/marimo:${{ matrix.architecture }}-${{ github.sha }}
36
+ ghcr.io/stfc/janus-core/marimo:${{ matrix.architecture }}-latest
0 commit comments