Skip to content

Commit

Permalink
Fixing Docker Login
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBurchLog committed Dec 9, 2020
1 parent 6ad5aee commit 7a68543
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/tag-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,11 @@ jobs:
- name: Build image
run: docker build . --file Dockerfile --tag $IMAGE_NAME

- name: Log into registry
run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login docker.pkg.github.com -u ${{ secrets.DOCKER_USERNAME }} --password-stdin
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}

- name: Run Dep Docs
run: make deps-docs
Expand Down

0 comments on commit 7a68543

Please sign in to comment.