From baf8d861af5b9fa24f151ed5e59f3cdd7fc72913 Mon Sep 17 00:00:00 2001 From: cybermaggedon Date: Mon, 13 Apr 2026 21:03:45 +0100 Subject: [PATCH] Fix Qemu setup (#800) --- .github/workflows/release.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 71e2c88b..f29e642c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -27,12 +27,6 @@ jobs: - name: Checkout uses: actions/checkout@v4 - # This allows the x86 runner to emulate ARM, needed to build ARM images - - name: Set up QEMU - uses: docker/setup-qemu-action@v3 - with: - platforms: arm64 - - name: Get version id: version run: echo VERSION=$(git describe --exact-match --tags | sed 's/^v//') >> $GITHUB_OUTPUT @@ -72,6 +66,11 @@ jobs: - name: Checkout uses: actions/checkout@v4 + - name: Set up QEMU - for ARM emulation + uses: docker/setup-qemu-action@v3 + with: + platforms: arm64 + - name: Docker Hub token run: echo ${{ secrets.DOCKER_SECRET }} > docker-token.txt