Skip to content

Commit

Permalink
#11762: add docker login and pull image to build artifact step
Browse files Browse the repository at this point in the history
  • Loading branch information
ttmchiou committed Sep 24, 2024
1 parent 4e365da commit 0ffeb63
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-artifact.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,14 @@ jobs:
uses: ./.github/actions/generate-docker-tag
with:
image: ${{ inputs.os }}
- name: Docker login
uses: docker/login-action@v3
with:
registry: https://ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Pull docker image
run: docker pull ${{ env.TT_METAL_DOCKER_IMAGE_TAG }}
- name: Build tt-metal and libs
uses: addnab/docker-run-action@v3
with:
Expand Down

0 comments on commit 0ffeb63

Please sign in to comment.