From 9059872d12734014977d504e1b77d45e5a822386 Mon Sep 17 00:00:00 2001 From: Toby Date: Sat, 27 Jun 2026 05:36:09 +0000 Subject: [PATCH] ci: fix GHCR login parameters in workflow --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c6898dd..480aa8f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,7 +53,8 @@ jobs: uses: docker/login-action@v3 with: registry: ghcr.io - token: ${{ secrets.GITHUB_TOKEN }} + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} - name: Tag and Push image to GHCR if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')