Skip to content

Commit

Permalink
gha workflows build and push arm64 images
Browse files Browse the repository at this point in the history
Signed-off-by: Mark Pashmfouroush <[email protected]>
  • Loading branch information
markpash authored and aanm committed Jun 18, 2024
1 parent a4710e0 commit 64f98e2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/docker-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ jobs:
ref: ${{ steps.tag.outputs.tag }}
persist-credentials: false

- name: Set up QEMU
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@ecf95283f03858871ff00b787d79c419715afc34 # v2.7.0

Expand All @@ -49,6 +52,6 @@ jobs:
with:
context: .
push: true
platforms: linux/amd64
platforms: linux/amd64,linux/arm64
tags: |
quay.io/${{ github.repository_owner }}/team-manager-ci:${{ steps.tag.outputs.tag }}
5 changes: 4 additions & 1 deletion .github/workflows/docker-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ jobs:
ref: ${{ steps.tag.outputs.tag }}
persist-credentials: false

- name: Set up QEMU
uses: docker/setup-qemu-action@68827325e0b33c7199eb31dd4e31fbe9023e06e3 # v3.0.0

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@ecf95283f03858871ff00b787d79c419715afc34 # v2.7.0

Expand All @@ -44,6 +47,6 @@ jobs:
with:
context: .
push: true
platforms: linux/amd64
platforms: linux/amd64,linux/arm64
tags: |
quay.io/${{ github.repository_owner }}/team-manager:${{ steps.tag.outputs.tag }}

0 comments on commit 64f98e2

Please sign in to comment.