We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 458a974 commit c2713cbCopy full SHA for c2713cb
1 file changed
.github/workflows/build-and-push.yml
@@ -4,16 +4,7 @@ on:
4
workflow_dispatch:
5
6
jobs:
7
- login:
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
- build:
+ build-publish:
17
runs-on: ubuntu-latest
18
steps:
19
- name: Checkout repo
@@ -34,5 +25,11 @@ jobs:
34
25
- name: Show builds
35
26
run: docker images
36
27
28
+ - name: Login to Docker Hub
29
+ uses: docker/login-action@v3
30
+ with:
31
+ username: ${{ vars.DOCKERHUB_USERNAME }}
32
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
33
+
37
# - name: Tag and publish
38
- # run: ./dev/arm64/update-tags-and-push-to-dockerhub.sh
+ # run: ./dev/arm64/update-tags-and-push-to-dockerhub.sh
0 commit comments