Skip to content

Commit 3dbc9ea

Browse files
committed
test new github action
1 parent af40dba commit 3dbc9ea

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.github/workflows/next.yml

+9-4
Original file line numberDiff line numberDiff line change
@@ -10,19 +10,24 @@ jobs:
1010
steps:
1111
-
1212
name: Set up QEMU
13-
uses: docker/setup-qemu-action@v2
13+
uses: docker/setup-qemu-action@v3
1414
-
1515
name: Set up Docker Buildx
16-
uses: docker/setup-buildx-action@v2
16+
uses: docker/setup-buildx-action@v3
1717
-
1818
name: Login to Docker Hub
19-
uses: docker/login-action@v2
19+
uses: docker/login-action@v3
2020
with:
2121
username: ${{ secrets.DOCKERHUB_USERNAME }}
2222
password: ${{ secrets.DOCKERHUB_PWD }}
2323
- name: Build and push
24-
uses: docker/build-push-action@v3
24+
uses: docker/build-push-action@v5
2525
with:
26+
context: .
27+
file: ./Dockerfile
28+
platforms: |
29+
linux/amd64
30+
linux/arm64
2631
tags: |
2732
n4z3m/dialoqbase-next:latest
2833
push: true

0 commit comments

Comments
 (0)