Skip to content

Commit

Permalink
building ARM64 images for dev and stable Docker images (#382)
Browse files Browse the repository at this point in the history
  • Loading branch information
heavycrystal authored Sep 13, 2023
1 parent c1d153a commit e89e30a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/dev-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ jobs:
uses: depot/build-push-action@v1
with:
token: ${{ secrets.DEPOT_TOKEN }}
platforms: linux/amd64,linux/arm64
context: .
file: stacks/nexus.Dockerfile
push: ${{ github.ref == 'refs/heads/main' }}
Expand All @@ -46,6 +47,7 @@ jobs:
uses: depot/build-push-action@v1
with:
token: ${{ secrets.DEPOT_TOKEN }}
platforms: linux/amd64,linux/arm64
context: .
file: stacks/flow-api.Dockerfile
push: ${{ github.ref == 'refs/heads/main' }}
Expand All @@ -56,6 +58,7 @@ jobs:
uses: depot/build-push-action@v1
with:
token: ${{ secrets.DEPOT_TOKEN }}
platforms: linux/amd64,linux/arm64
context: .
file: stacks/flow-worker.Dockerfile
push: ${{ github.ref == 'refs/heads/main' }}
Expand All @@ -66,6 +69,7 @@ jobs:
uses: depot/build-push-action@v1
with:
token: ${{ secrets.DEPOT_TOKEN }}
platforms: linux/amd64,linux/arm64
context: .
file: stacks/flow-snapshot-worker.Dockerfile
push: ${{ github.ref == 'refs/heads/main' }}
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/stable-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:
- name: Publish PeerDB Stable Image
uses: depot/build-push-action@v1
with:
platforms: linux/amd64,linux/arm64
token: ${{ secrets.DEPOT_TOKEN }}
context: .
file: stacks/nexus.Dockerfile
Expand All @@ -40,6 +41,7 @@ jobs:
- name: Publish Flow API Image
uses: depot/build-push-action@v1
with:
platforms: linux/amd64,linux/arm64
token: ${{ secrets.DEPOT_TOKEN }}
context: .
file: stacks/flow-api.Dockerfile
Expand All @@ -50,6 +52,7 @@ jobs:
- name: Publish Flow Worker Stable Image
uses: depot/build-push-action@v1
with:
platforms: linux/amd64,linux/arm64
token: ${{ secrets.DEPOT_TOKEN }}
context: .
file: stacks/flow-worker.Dockerfile
Expand All @@ -60,6 +63,7 @@ jobs:
- name: Publish Flow Snapshot Worker Stable Image
uses: depot/build-push-action@v1
with:
platforms: linux/amd64,linux/arm64
token: ${{ secrets.DEPOT_TOKEN }}
context: .
file: stacks/flow-snapshot-worker.Dockerfile
Expand Down

0 comments on commit e89e30a

Please sign in to comment.