From 5caecac3cf70ec28a761989d22ea90d6512173a9 Mon Sep 17 00:00:00 2001 From: Goulven Bourveau Date: Sat, 12 Apr 2025 14:00:02 +0200 Subject: [PATCH] The registry is not in the environment context, but in the variable context here --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2b717d5..aea8102 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,13 +23,13 @@ jobs: id: meta uses: docker/metadata-action@v5 with: - images: ${{ env.REGISTRY }}/${{ github.repository }} + images: ${{ vars.REGISTRY }}/${{ github.repository }} - name: Login to DockerHub if: github.event_name != 'pull_request' uses: docker/login-action@v3 with: - registry: ${{ env.REGISTRY }} + registry: ${{ vars.REGISTRY }} username: ${{ github.actor }} password: ${{ secrets.GITHUB_TOKEN }} -