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