From 467ef28eea83ede4e98d36429fa1d565461391f5 Mon Sep 17 00:00:00 2001 From: Marko Date: Mon, 12 Sep 2022 20:20:50 +0200 Subject: [PATCH] chore: build for multiple platforms (#13248) * build for multiple platforms * test in pr --- .github/workflows/docker.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 6b80a78cad..a5613914f2 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -2,6 +2,7 @@ name: Build & Push # Build & Push builds the simapp docker image on every push to main and # and pushes the image to https://hub.docker.com/r/interchainio/simapp/tags on: + pull_request: push: branches: - main @@ -54,5 +55,6 @@ jobs: - name: Publish to Docker Hub uses: docker/build-push-action@v3 with: + platforms: linux/amd64,linux/arm64 push: ${{ github.event_name != 'pull_request' }} tags: ${{ steps.prep.outputs.tags }}