fix: correct GitHub Actions context variables

- Fix IMAGE_NAME to use proper GitHub context syntax
- Ensure workflows use ${{ github.repository }} instead of environment variables
- This should resolve the build failure from invalid image tags
This commit is contained in:
Greg
2025-07-01 17:35:16 -07:00
parent 82fc2a6691
commit 7313b1d155
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ on:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${GITHUB_REPOSITORY}
IMAGE_NAME: ${{ github.repository }}
jobs:
build:

View File

@@ -6,7 +6,7 @@ on:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${GITHUB_REPOSITORY}
IMAGE_NAME: ${{ github.repository }}
jobs:
validate: