Skip to content

Commit

Permalink
fix: docker login command
Browse files Browse the repository at this point in the history
  • Loading branch information
Justintime50 committed Dec 3, 2024
1 parent 734c206 commit e5e429c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ jobs:
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- name: Sign into Docker
run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USERNAME }} --password-stdin ${{ secrets.DOCKER_REGISTRY_URL }}
run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login ${{ secrets.DOCKER_REGISTRY_URL }} -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
- name: Build Docker image and push to Docker Registry
run: docker buildx build --push -t justinpaulhammond:${GITHUB_SHA} --build-arg PROD=true --platform linux/amd64 .

0 comments on commit e5e429c

Please sign in to comment.