Skip to content

Commit

Permalink
Merge pull request #32 from digitalocean/ndombroski/use-docker-login-…
Browse files Browse the repository at this point in the history
…action

Use docker login action
  • Loading branch information
ndombroski authored May 31, 2024
2 parents 52632a1 + 10b4233 commit 2adab56
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,11 @@ jobs:
export TEST_IMAGE="$(make get-envtest-image-tag -s)"
echo "TEST_IMAGE=${TEST_IMAGE}" >> ${GITHUB_ENV}
- name: Log into container registry
run : docker login --username ${{ secrets.DOCKER_HUB_USER }} --password-stdin <<< ${{ secrets.DOCKER_HUB_TOKEN }}
- name: Log in to the Docker Hub
uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
with:
username: ${{ secrets.DOCKER_HUB_USER }}
password: ${{ secrets.DOCKER_HUB_TOKEN }}

# Build a new testenv image to use if and only if the Dockerfile or Makefile is changed in this PR
- name: Build image
Expand Down

0 comments on commit 2adab56

Please sign in to comment.