Skip to content

Commit

Permalink
ci(ct-base): fix failing image pushes IQSS#8932
Browse files Browse the repository at this point in the history
The login to the registry needs to be explicit
otherwise pushes will fail to acquire the
correct token and pushes are rejected with
"insufficient_scope: authorization failed"
  • Loading branch information
poikilotherm committed Nov 8, 2022
1 parent 7d4388e commit 3d790aa
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/container_base_push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ jobs:
name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- if: ${{ github.event_name != 'pull_request' }}
Expand Down

0 comments on commit 3d790aa

Please sign in to comment.