Add step for authorizing to ghcr

This commit is contained in:
Aleksandar Puharic 2023-04-05 22:54:20 +02:00
parent fd6fba8dc9
commit 1357f2fec3
Signed by: xZero707
GPG Key ID: 3CC53DCAA9C237BB

View File

@ -27,6 +27,13 @@ jobs:
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.PAT_TOKEN}}
-
name: Await successful tests
uses: lewagon/wait-on-check-action@v1.3.1