Fix 403 when pushing images to GHCR

This commit is contained in:
Florian Piesche
2022-06-13 18:29:53 +01:00
committed by GitHub
parent 7f387ce6aa
commit 01114d9309

View File

@@ -68,6 +68,13 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GHCR_TOKEN }}
- name: build & push images
uses: docker/build-push-action@v2
with: