Skip to content

Commit

Permalink
add docker login
Browse files Browse the repository at this point in the history
  • Loading branch information
bschimke95 committed Jul 2, 2024
1 parent 53cbfbd commit efb82ea
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/publish-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
test:
permissions:
contents: read # for actions/checkout to fetch code
packages: write # for publishing docker images
name: Build and Publish Images
runs-on: ubuntu-latest

Expand Down Expand Up @@ -42,6 +43,13 @@ jobs:
- name: Check out code
uses: actions/checkout@v4

- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: https://ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build bootstrap provider image
run: make BOOTSTRAP_IMAGE_TAG=${{ steps.determine.outputs.version }} docker-build-bootstrap

Expand Down

0 comments on commit efb82ea

Please sign in to comment.