Skip to content

Commit

Permalink
ci: update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
felixerdy committed Dec 30, 2024
1 parent f898df8 commit e1d51a4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/registry-build-publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,6 @@ env:
jobs:
build-and-push-images:
runs-on: ubuntu-latest
strategy:
matrix:
architecture: [amd64, arm64]

permissions:
contents: read
Expand All @@ -43,7 +40,10 @@ jobs:
flavor: |
latest=auto
prefix=
suffix=${{ matrix.architecture }}
suffix=
- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
Expand All @@ -54,6 +54,6 @@ jobs:
context: .
target: production
push: true
platforms: linux/${{ matrix.architecture }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit e1d51a4

Please sign in to comment.