From 6ec7bb5422d73cffaeadc12bed4b6a813e08584a Mon Sep 17 00:00:00 2001 From: Connor Johnstone Date: Tue, 2 Sep 2025 12:39:51 -0400 Subject: [PATCH] variables > vars --- .gitea/workflows/docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/docker.yml b/.gitea/workflows/docker.yml index e29b038..d9b1ff3 100644 --- a/.gitea/workflows/docker.yml +++ b/.gitea/workflows/docker.yml @@ -18,8 +18,8 @@ jobs: - name: Login to Docker Registry uses: docker/login-action@v3 with: - registry: ${{ variables.REGISTRY }} - username: ${{ variables.USERNAME }} + registry: ${{ vars.REGISTRY }} + username: ${{ vars.USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Build and push @@ -28,7 +28,7 @@ jobs: context: . push: true tags: | - ${{ variables.REGISTRY }}/connor/calendar:latest - ${{ variables.REGISTRY }}/connor/calendar:${{ github.sha }} + ${{ vars.REGISTRY }}/connor/calendar:latest + ${{ vars.REGISTRY }}/connor/calendar:${{ github.sha }} cache-from: type=gha cache-to: type=gha,mode=max