Skip to content

Commit

Permalink
fix: only build devcontainer for amd64
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Buhl <[email protected]>
  • Loading branch information
onedr0p committed May 21, 2024
1 parent c9a6d68 commit fdd02f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/devcontainer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
with:
platforms: linux/amd64,linux/arm64
platforms: linux/amd64 #,linux/arm64

- if: ${{ github.event_name != 'pull_request' }}
name: Login to GitHub Container Registry
Expand All @@ -53,6 +53,6 @@ jobs:
imageName: ghcr.io/${{ github.repository }}/devcontainer
# cacheFrom: ghcr.io/${{ github.repository }}/devcontainer
imageTag: base,latest
platform: linux/amd64,linux/arm64
platform: linux/amd64 #,linux/arm64
configFile: .devcontainer/ci/devcontainer.json
push: ${{ github.event_name == 'pull_request' && 'never' || 'always' }}

0 comments on commit fdd02f4

Please sign in to comment.