Skip to content

Commit

Permalink
Merge pull request #14 from sparkfabrik/fix/fix_container_registry_login
Browse files Browse the repository at this point in the history
Fix docker container registry login
  • Loading branch information
Monska85 authored Jan 26, 2024
2 parents 5804f70 + ad75de5 commit 74a234d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,14 @@ jobs:
steps:
- uses: actions/checkout@v4

# We use commit sha here to be as safe as possible with credentials.
- name: Log in to the Container registry
uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

Expand Down

0 comments on commit 74a234d

Please sign in to comment.