From 1d064f46e457ea56f80badf0466d25fdc6b2b1cf Mon Sep 17 00:00:00 2001 From: Michele Locati Date: Thu, 28 Nov 2024 22:44:14 +0100 Subject: [PATCH] Push docker images to GitHub Container Registry too --- .github/workflows/readme-release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/readme-release.yml b/.github/workflows/readme-release.yml index e42e09de..fe281542 100644 --- a/.github/workflows/readme-release.yml +++ b/.github/workflows/readme-release.yml @@ -171,6 +171,14 @@ jobs: with: username: mlocati password: ${{ secrets.DOCKERHUB_TOKEN }} + - + name: Login to GitHub Container Registry + if: env.VERSIONTAG_THIS != '' + uses: docker/login-action@v3 + with: + registry: ghcr.io + username: ${{ github.repository_owner }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Set up docker buildx if: env.VERSIONTAG_THIS != ''