Skip to content

Commit 2bb2216

Browse files
authored
Merge pull request kivy#3052 from AndreMiras/feature/docker_login_fix
👷 Fix docker login
2 parents 3094c04 + 496f916 commit 2bb2216

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/docker.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,11 @@ jobs:
1414
- uses: actions/checkout@v4
1515
- uses: docker/setup-buildx-action@v3
1616
- run: make docker/build
17-
- run: make docker/login
1817
env:
1918
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
2019
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
2120
- name: docker push
2221
if: github.ref == 'develop'
23-
run: make docker/push
22+
run: |
23+
make docker/login
24+
make docker/push

0 commit comments

Comments
 (0)