From dac8182eb62acc1cb489d17ccc34f243f43d4f94 Mon Sep 17 00:00:00 2001 From: Alexander Greene Date: Tue, 14 Mar 2023 09:13:53 -0600 Subject: [PATCH] Add QMEU to goreleaser GitHub Action (#2936) This commit updates the goreleaser github action to install QMEU to support emulation of multiple architectures. Signed-off-by: Alexander Greene --- .github/workflows/goreleaser.yaml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/goreleaser.yaml b/.github/workflows/goreleaser.yaml index c66e177213..b4cd95607a 100644 --- a/.github/workflows/goreleaser.yaml +++ b/.github/workflows/goreleaser.yaml @@ -37,6 +37,10 @@ jobs: tag_name: ${{ github.ref }} release_name: ${{ github.ref }} + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + if: startsWith(github.ref, 'refs/tags') + - name: Docker Login uses: docker/login-action@v1 if: startsWith(github.ref, 'refs/tags')