Skip to content

Commit

Permalink
fix: Remove arm
Browse files Browse the repository at this point in the history
  • Loading branch information
aiakide committed Nov 5, 2023
1 parent e94d8a2 commit 2c62edc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
with:
platforms: arm64,amd64
platforms: amd64

- name: Set up Docker Buildx
id: buildx
Expand All @@ -59,7 +59,7 @@ jobs:
builder: ${{ steps.buildx.outputs.name }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
- name: Build and push dagster Docker image
id: docker_build_amd64_dagster
uses: docker/build-push-action@v2.4.0
Expand All @@ -71,7 +71,7 @@ jobs:
builder: ${{ steps.buildx.outputs.name }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
platforms: linux/amd64,linux/arm64
platforms: linux/amd64
- name: Build and push mlflow Docker image
id: docker_build_amd64_mlflow
uses: docker/build-push-action@v2.4.0
Expand All @@ -83,7 +83,7 @@ jobs:
builder: ${{ steps.buildx.outputs.name }}
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,dest=/tmp/.buildx-cache
platforms: linux/amd64,linux/arm64
platforms: linux/amd64

- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}

0 comments on commit 2c62edc

Please sign in to comment.