From 05d88f234f07257d423bf7402b6d9574c1b47e66 Mon Sep 17 00:00:00 2001 From: Ingo Gottwald Date: Tue, 8 Apr 2025 12:09:09 +0200 Subject: [PATCH] ci: login to the correct registry --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index aec66ed..4c93258 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -19,7 +19,7 @@ jobs: run: docker build --platform linux/amd64 -t ghcr.io/digitalocean-packages/doks-debug:latest . - name: log into container registry - run: echo "${{ secrets.GHCRTOKEN }}" | docker login --username "${{ secrets.GHCRUSER }}" --password-stdin + run: echo "${{ secrets.GHCRTOKEN }}" | docker login ghcr.io --username "${{ secrets.GHCRUSER }}" --password-stdin - name: push image run: docker push ghcr.io/digitalocean-packages/doks-debug:latest