We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bf0ac46 commit 0b01bf6Copy full SHA for 0b01bf6
.github/workflows/next.yml
@@ -8,24 +8,22 @@ jobs:
8
docker:
9
runs-on: ubuntu-latest
10
steps:
11
- -
12
- name: Set up QEMU
+ - name: Checkout
+ uses: actions/checkout@v4
13
+ - name: Set up QEMU
14
uses: docker/setup-qemu-action@v3
15
- name: Set up Docker Buildx
+ - name: Set up Docker Buildx
16
uses: docker/setup-buildx-action@v3
17
18
- name: Login to Docker Hub
+ - name: Login to Docker Hub
19
uses: docker/login-action@v3
20
with:
21
username: ${{ secrets.DOCKERHUB_USERNAME }}
22
password: ${{ secrets.DOCKERHUB_PWD }}
23
- name: Build and push
24
uses: docker/build-push-action@v5
25
26
- platforms: |
27
- linux/amd64
28
- linux/arm64
+ context: .
+ platforms: linux/amd64,linux/arm64
29
tags: |
30
n4z3m/dialoqbase-next:latest
31
push: true
0 commit comments