Skip to content

Commit

Permalink
Merge pull request #15 from jplanckeel/fix/correct-docker-build
Browse files Browse the repository at this point in the history
fix: correct docker build
  • Loading branch information
jplanckeel authored Feb 13, 2024
2 parents b8ff914 + b5a296b commit aac1cf2
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,12 @@ jobs:
uses: docker/login-action@v2
if: "steps.tag.outputs.value != ''"
with:
username: ${{secrets.DOCKER_USERNAME}}
password: ${{ secrets.DOCKER_AUTH_TOKEN }}
username: ${{secrets.DOCKERHUB_USERNAME}}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push
uses: docker/build-push-action@v5
if: "steps.tag.outputs.value != ''"
with:
push: true
tags: jplanckeel/scope:${{steps.version_tag.outputs.tag}}
Expand Down

0 comments on commit aac1cf2

Please sign in to comment.