Skip to content

Commit 16d9bd5

Browse files
committed
fixing...
1 parent 5118310 commit 16d9bd5

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/deploy_docker.yml

+10-9
Original file line numberDiff line numberDiff line change
@@ -13,23 +13,24 @@ jobs:
1313
contents: read
1414

1515
steps:
16-
-
17-
name: Set up QEMU
16+
- uses: actions/checkout@main
17+
18+
- name: Set up QEMU
1819
uses: docker/setup-qemu-action@v3
19-
-
20-
name: Set up Docker Buildx
20+
21+
- name: Set up Docker Buildx
2122
uses: docker/setup-buildx-action@v3
22-
-
23-
name: Login to Docker Hub
23+
24+
- name: Login to Docker Hub
2425
uses: docker/login-action@v3
2526
with:
2627
username: ${{ secrets.DOCKERHUB_USERNAME }}
2728
password: ${{ secrets.DOCKERHUB_TOKEN }}
28-
-
29-
name: Build and push
29+
30+
- name: Build and push
3031
uses: docker/build-push-action@v5
3132
with:
3233
context: .
3334
file: ./Dockerfile
3435
push: true
35-
tags: matrixanger/owl-arm64v8:latest
36+
tags: ${{ secrets.DOCKERHUB_USERNAME }}/owl-arm64v8:latest

0 commit comments

Comments
 (0)