Skip to content

Commit

Permalink
Merge pull request #716 from gliderlabs/master
Browse files Browse the repository at this point in the history
fix: add missing docker login call
  • Loading branch information
josegonzalez authored Oct 22, 2021
2 parents 0b584a3 + ceb41ba commit c2c0b66
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,13 @@ jobs:
with:
name: build

- name: Login to DockerHub
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: release
run: |
if [[ "${GITHUB_REF#refs/heads/}" == "release" ]]; then
Expand Down

0 comments on commit c2c0b66

Please sign in to comment.