diff --git a/.github/workflows/podman-udm.yml b/.github/workflows/podman-udm.yml index acd4af8..737fc3d 100644 --- a/.github/workflows/podman-udm.yml +++ b/.github/workflows/podman-udm.yml @@ -20,9 +20,13 @@ jobs: steps: - uses: actions/checkout@v3 - name: Docker Setup QEMU - uses: docker/setup-qemu-action@v2 + uses: docker/setup-qemu-action@v2.1.0 + with: + platforms: arm64 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v2.5.0 - name: Build the Docker image - run: docker build --file podman-update/build/Dockerfile --build-arg UDM_PLATFORM=UDM-Base --tag boostchicken:udm-podman podman-update/build/ + run: DOCKER_BUILDKIT=1 docker build --file podman-update/build/Dockerfile --build-arg UDM_PLATFORM=UDM-Base --tag boostchicken:udm-podman podman-update/build/ - name: Docker Extract id: extract uses: boostchicken-dev/actions-docker-extract@v3