From 6b41a0a8fc8b79ea059f7cde950e0a743e48c9d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pablo=20Gonz=C3=A1lez?= Date: Tue, 27 Feb 2024 09:24:46 +0100 Subject: [PATCH] test to build also arm images --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 42b510e5..7af4321a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -68,6 +68,8 @@ jobs: needs: [e2e-tests] steps: - uses: actions/checkout@v4 + - name: Set up Docker Buildx + - uses: docker/setup-buildx-action@v2 - name: Publish to Registry uses: elgohr/Publish-Docker-Github-Action@v5 with: @@ -76,6 +78,8 @@ jobs: password: ${{ secrets.GITHUB_TOKEN }} registry: ghcr.io workdir: users/authservice + platforms: linux/amd64,linux/arm64 + docker-push-userservice: name: Push user service Docker Image to GitHub Packages runs-on: ubuntu-latest