Skip to content

Commit

Permalink
Fix the Architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaiede committed Apr 24, 2024
1 parent eca1c57 commit bed3344
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,18 +38,18 @@ jobs:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Build ${{ matrix.arch }}
- name: Build ${{ env.ARCH }}
uses: docker/build-push-action@v5
with:
builder: ${{ steps.buildx.outputs.name }}
context: .
file: ./Docker/Dockerfile
platforms: ${{ env.ARCH }}
push: ${{ github.event_name != 'pull_request' }}
tags: kaiede/minecraft-bedrock-backup:${{ env.docker_tag }}-${{ matrix.arch }}
tags: kaiede/minecraft-bedrock-backup:${{ env.docker_tag }}-${{ env.ARCH }}
build-args: |
QEMU_CPU=max
arch=${{ matrix.arch }}
arch=${{ env.ARCH }}
swift_base=${{ env.swift_base }}
swift_version=${{ env.swift_version }}
Expand Down

0 comments on commit bed3344

Please sign in to comment.