From b3ccdaaa0a90c44ce86ab2cb1dab8e76e62e3883 Mon Sep 17 00:00:00 2001 From: Sven Urbanski Date: Fri, 26 Jan 2024 13:16:31 +0100 Subject: [PATCH] fix: login to ghcr in pipeline --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b1f931d3b8..8b5ad06b84 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,6 +26,12 @@ jobs: registry: europe-west3-docker.pkg.dev username: _json_key password: ${{ secrets.GCP_ARTIFACT_REGISTRY_PUSH_JSON_KEY }} + - name: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: ghcr.io + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Re-tag service images with release version for google docker registry run: | git fetch --tags # this should have been done by the checkout action before.