Skip to content

Commit

Permalink
ci: remove arm build and fix race condition
Browse files Browse the repository at this point in the history
  • Loading branch information
choffmann committed Aug 1, 2024
1 parent 60f3d88 commit 7160f53
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-develop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
with:
context: .
file: ./.docker/Dockerfile.dev
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: true
tags: ghcr.io/${{ env.REPO_LC }}-dev:latest, ghcr.io/${{ env.REPO_LC }}-dev:${{ env.COMMIT_SHA }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-push-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
with:
context: .
file: ./.docker/Dockerfile.prod
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: true
tags: ghcr.io/${{ env.REPO_LC }}:${{ env.RELEASE_VERSION }}, ghcr.io/${{ env.REPO_LC }}:latest

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-and-push-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
with:
context: .
file: ./.docker/Dockerfile.stage
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: true
tags: ghcr.io/${{ env.REPO_LC }}-stage:${{ env.RELEASE_VERSION }}-preview, ghcr.io/${{ env.REPO_LC }}-stage:latest, ghcr.io/${{ env.REPO_LC }}-stage:${{ env.COMMIT_SHA }}

Expand All @@ -92,7 +92,7 @@ jobs:
with:
context: .
file: ./.docker/Dockerfile.stage
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: true
tags: ghcr.io/${{ env.REPO_LC }}-stage:latest, ghcr.io/${{ env.REPO_LC }}-stage:${{ env.COMMIT_SHA }}

Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/draft-new-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ jobs:
build_and_deploy_stage:
runs-on: ubuntu-latest
needs: draft_new_release
permissions:
contents: write
packages: write
Expand Down Expand Up @@ -117,7 +118,7 @@ jobs:
with:
context: .
file: ./.docker/Dockerfile.stage
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
push: true
tags: ghcr.io/${{ env.REPO_LC }}-stage:${{ env.RELEASE_VERSION }}-preview, ghcr.io/${{ env.REPO_LC }}-stage:latest, ghcr.io/${{ env.REPO_LC }}-stage:${{ env.COMMIT_SHA }}

Expand Down

0 comments on commit 7160f53

Please sign in to comment.