We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7835c9 commit 965ca10Copy full SHA for 965ca10
.github/workflows/image.yml
@@ -0,0 +1,27 @@
1
+name: ci
2
+
3
+on:
4
+ push:
5
6
+jobs:
7
+ docker:
8
+ runs-on: ubuntu-latest
9
+ steps:
10
+ - name: Login to Docker Hub
11
+ uses: docker/login-action@v3
12
+ with:
13
+ username: ${{ vars.DOCKERHUB_USERNAME }}
14
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
15
16
+ - name: Set up QEMU
17
+ uses: docker/setup-qemu-action@v3
18
19
+ - name: Set up Docker Buildx
20
+ uses: docker/setup-buildx-action@v3
21
22
+ - name: Build and push
23
+ uses: docker/build-push-action@v6
24
25
+ platforms: linux/amd64,linux/arm64
26
+ push: true
27
+ tags: user/app:latest
hooks/post_push
0 commit comments