From 1357f2fec36c8311ef89625699741e731fc0dcde Mon Sep 17 00:00:00 2001 From: xZero707 Date: Wed, 5 Apr 2023 22:54:20 +0200 Subject: [PATCH] Add step for authorizing to ghcr --- .github/workflows/image.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml index 89e1b78..6aa2e10 100644 --- a/.github/workflows/image.yml +++ b/.github/workflows/image.yml @@ -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