We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 610a8af commit ab15b4cCopy full SHA for ab15b4c
.github/workflows/release.yaml
@@ -39,6 +39,8 @@ jobs:
39
type=semver,pattern={{major}}.{{minor}}
40
type=semver,pattern={{major}}
41
type=sha
42
+ - name: Set up QEMU
43
+ uses: docker/setup-qemu-action@v2
44
- name: Set up Docker Buildx
45
uses: docker/setup-buildx-action@v2
46
- name: Login to DockerHub
@@ -47,9 +49,10 @@ jobs:
47
49
username: ${{ secrets.DOCKERHUB_USERNAME }}
48
50
password: ${{ secrets.DOCKERHUB_TOKEN }}
51
- name: Build and push
- uses: docker/build-push-action@v3
52
+ uses: docker/build-push-action@v4
53
with:
54
context: .
55
+ platforms: linux/amd64,linux/arm64
56
push: ${{ github.event_name != 'pull_request' }}
57
tags: ${{ steps.meta.outputs.tags }}
58
labels: ${{ steps.meta.outputs.labels }}
.github/workflows/test.yaml
0 commit comments