Skip to content

Commit 7128393

Browse files
authored
feat: add latex template
1 parent eea9f34 commit 7128393

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/build-dev-container.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
fail-fast: false
3939
matrix:
4040
dir: ${{fromJson(needs.list-dir.outputs.dir)}}
41+
platform: ["linux/amd64", "linux/arm64"]
4142
steps:
4243
- name: Checkout
4344
uses: actions/checkout@v4
@@ -67,8 +68,8 @@ jobs:
6768
uses: devcontainers/[email protected]
6869
with:
6970
subFolder: ./templates/${{ matrix.dir }}
70-
imageName: ghcr.io/pnstack/codespace/${{ matrix.dir }}
71+
imageName: ghcr.io/pnstack/codespace/${{ matrix.dir }}${{ matrix.platform == 'linux/arm64' && '-arm' || '' }}
7172
cacheFrom: ghcr.io/pnstack/codespace/${{ matrix.dir }}:latest
7273
imageTag: ${{ github.ref == 'refs/heads/main' && 'latest' || steps.meta.outputs.tags }}
73-
platform: linux/amd64
74-
push: always
74+
platform: ${{ matrix.platform }}
75+
push: always

0 commit comments

Comments
 (0)