From 0b88fe249058bae65544f8425b8115d877464bbb Mon Sep 17 00:00:00 2001 From: Lucid Kobold Date: Wed, 3 Sep 2025 13:48:40 -0400 Subject: [PATCH] Update env variable --- .github/workflows/main.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 08021ec..891821d 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,10 +27,10 @@ jobs: ansible-galaxy collection install ansible.posix --force - name: "Enable Corepack" run: corepack enable - - name: Log into registry ${{ env.HUB_USER }} + - name: Log into registry ${{ env.REGISTRY }} uses: docker/login-action@v2 with: - registry: ${{ env.HUB_USER }} + registry: ${{ env.REGISTRY }} username: ${{ env.HUB_USER }} password: ${{ secrets.HUB_TOKEN }} - name: "Setup Docker buildx" @@ -39,7 +39,7 @@ jobs: id: meta uses: docker/metadata-action@v4 with: - images: ${{ env.HUB_USER }}/${{ env.IMAGE_NAME }} + images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} - name: "Build and Push Versioned Docker Image" id: build-and-push uses: docker/build-push-action@v4 @@ -56,5 +56,5 @@ jobs: with: context: . push: true - tags: ${{ env.HUB_USER }}/${{ env.IMAGE_NAME }}:latest + tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest labels: ${{ steps.meta.outputs.labels }}