variables > vars
Some checks failed
Build and Push Docker Image / docker (push) Failing after 24s

This commit is contained in:
Connor Johnstone
2025-09-02 12:39:51 -04:00
parent ce74750d85
commit 6ec7bb5422

View File

@@ -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