Skip to content

Commit

Permalink
Merge pull request kivy#3052 from AndreMiras/feature/docker_login_fix
Browse files Browse the repository at this point in the history
👷 Fix docker login
  • Loading branch information
AndreMiras authored Aug 20, 2024
2 parents 3094c04 + 496f916 commit 2bb2216
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,11 @@ jobs:
- uses: actions/checkout@v4
- uses: docker/setup-buildx-action@v3
- run: make docker/build
- run: make docker/login
env:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
- name: docker push
if: github.ref == 'develop'
run: make docker/push
run: |
make docker/login
make docker/push

0 comments on commit 2bb2216

Please sign in to comment.