From e3626b5cb1efd618be06f670d661a0306a415cfa Mon Sep 17 00:00:00 2001 From: CrazyMax Date: Tue, 11 Aug 2020 21:53:26 +0200 Subject: [PATCH] Fix workflows Signed-off-by: CrazyMax --- .github/workflows/setup-buildx-ci.yml | 8 ++++---- .github/workflows/setup-qemu-ci.yml | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/setup-buildx-ci.yml b/.github/workflows/setup-buildx-ci.yml index fffc133..6efe059 100644 --- a/.github/workflows/setup-buildx-ci.yml +++ b/.github/workflows/setup-buildx-ci.yml @@ -63,9 +63,9 @@ jobs: buildx-version: - latest - v0.2.2 - qemu-version: - - latest - - 4.2.0-7 + qemu-platforms: + - all + - arm64,riscv64,arm steps: - name: Checkout @@ -74,7 +74,7 @@ jobs: name: Set up QEMU uses: ./setup-qemu/ with: - qemu-version: ${{ matrix.qemu-version }} + platforms: ${{ matrix.qemu-platforms }} - name: Set up Docker Buildx id: buildx diff --git a/.github/workflows/setup-qemu-ci.yml b/.github/workflows/setup-qemu-ci.yml index 2ab6bca..2409508 100644 --- a/.github/workflows/setup-qemu-ci.yml +++ b/.github/workflows/setup-qemu-ci.yml @@ -36,5 +36,5 @@ jobs: name: Set up QEMU uses: ./setup-qemu/ with: - image: ${ matrix.image } - platforms: ${ matrix.platforms } + image: ${{ matrix.image }} + platforms: ${{ matrix.platforms }}