We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b3d31e commit b74ffc9Copy full SHA for b74ffc9
.github/workflows/dockerhub.yml
@@ -10,15 +10,19 @@ jobs:
10
steps:
11
- name: Checkout repo
12
uses: actions/checkout@v3
13
+
14
- name: Set up Docker Buildx
15
uses: docker/setup-buildx-action@v2
16
17
- name: Login to Docker Hub
18
uses: docker/login-action@v2
19
with:
20
username: ${{ secrets.DOCKER_USER }}
21
password: ${{ secrets.DOCKER_PASSWORD }}
22
23
- name: Build and push
24
uses: docker/build-push-action@v4
25
26
push: true
27
+ platforms: linux/amd64,linux/arm64
28
tags: ${{ secrets.DOCKER_USER }}/${{ secrets.DOCKER_REPO }}:latest,${{ secrets.DOCKER_USER }}/${{ secrets.DOCKER_REPO }}:${{ github.sha }}
0 commit comments