Skip to content

Commit

Permalink
docker login
Browse files Browse the repository at this point in the history
  • Loading branch information
pfilipko1 committed Jul 17, 2023
1 parent aff0196 commit 0b8cee8
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/build-container-and-test-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,12 @@ jobs:
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

# the tests need the gprofiler image built (from Dockerfile). I run it separately here, because "docker build" prints the build logs
# more nicely. the tests will then be able to use the built image.
- name: Build gProfiler image
Expand Down Expand Up @@ -67,7 +73,13 @@ jobs:
with:
# same version as used in tests/containers/nodejs/Dockerfile
node-version: 10.x


- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Checkout Code
uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 0b8cee8

Please sign in to comment.