From 23fd094c5fefd238f8b6146e804b5534beb911ac Mon Sep 17 00:00:00 2001 From: Kristoffer Date: Fri, 13 Oct 2023 18:14:59 +0200 Subject: [PATCH] fix runner --- .github/workflows/release.yml | 19 +++++-------------- 1 file changed, 5 insertions(+), 14 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 094a950..affd970 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,18 +18,7 @@ env: jobs: release: name: Release - strategy: - fail-fast: false - matrix: - platform: - - linux/amd64 - - linux/arm64 - include: - - platform: linux/amd64 - runner: amd64-builder - - platform: linux/arm64 - runner: arm64-builder - runs-on: ${{ matrix.runner }} + runs-on: ubuntu-latest permissions: contents: write # to be able to publish a GitHub release issues: write # to be able to comment on released issues @@ -53,7 +42,10 @@ jobs: node-version: 18 cache: 'pnpm' - + - name: Set up QEMU + uses: docker/setup-qemu-action@v2 + with: + platforms: 'arm64,amd64' - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 @@ -94,7 +86,6 @@ jobs: uses: docker/build-push-action@v4 with: context: . - platforms: ${{ matrix.platform }} provenance: false push: true tags: ${{ steps.meta.outputs.tags }}