Skip to content

Commit

Permalink
fixed docker for actions, buildx and docker login
Browse files Browse the repository at this point in the history
  • Loading branch information
quirrelHK committed Mar 5, 2024
1 parent d22d817 commit fad4444
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/build-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,14 @@ jobs:
pytest
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v3

- name: Build and push
id: docker_build
Expand Down

0 comments on commit fad4444

Please sign in to comment.