Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 13 additions & 2 deletions .github/workflows/build-push-edge-debug.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,24 @@ jobs:
with:
images: parseable/parseable

- name: Build and push
- name: Build and push x86_64
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile.debug
push: true
tags: parseable/parseable:edge-debug
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Build and push aarch64
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile.debug
push: true
tags: parseable/parseable:edge-debug
platforms: linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
16 changes: 14 additions & 2 deletions .github/workflows/build-push-edge.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,25 @@ jobs:
with:
images: parseable/parseable

- name: Build and push

- name: Build and push x86_64
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
tags: parseable/parseable:edge
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
cache-from: type=gha
cache-to: type=gha,mode=max

- name: Build and push aarch64
uses: docker/build-push-action@v6
with:
context: .
file: ./Dockerfile
push: true
tags: parseable/parseable
platforms: linux/arm64
cache-from: type=gha
cache-to: type=gha,mode=max
Loading