Committed by
GitHub
Merge pull request #201 from 666ghj/feature/arm_docker
Feat(docker): support arm platform
Showing
1 changed file
with
4 additions
and
1 deletions
| @@ -33,6 +33,9 @@ jobs: | @@ -33,6 +33,9 @@ jobs: | ||
| 33 | type=semver,pattern={{version}} | 33 | type=semver,pattern={{version}} |
| 34 | type=raw,value=latest | 34 | type=raw,value=latest |
| 35 | 35 | ||
| 36 | + - name: Set up QEMU | ||
| 37 | + uses: docker/setup-qemu-action@v3 | ||
| 38 | + | ||
| 36 | - name: Set up Docker Buildx | 39 | - name: Set up Docker Buildx |
| 37 | uses: docker/setup-buildx-action@v3 | 40 | uses: docker/setup-buildx-action@v3 |
| 38 | with: | 41 | with: |
| @@ -47,4 +50,4 @@ jobs: | @@ -47,4 +50,4 @@ jobs: | ||
| 47 | labels: ${{ steps.meta.outputs.labels }} | 50 | labels: ${{ steps.meta.outputs.labels }} |
| 48 | cache-from: type=gha | 51 | cache-from: type=gha |
| 49 | cache-to: type=gha,mode=max | 52 | cache-to: type=gha,mode=max |
| 50 | - platform: linux/amd64,linux/arm64 | 53 | + platforms: linux/amd64,linux/arm64 |
-
Please register or login to post a comment