fix: Update GitHub Actions to use GH_TOKEN for container registry access

- Switch from GITHUB_TOKEN to GH_TOKEN for GHCR authentication
- This resolves 'installation not allowed to Write organization package' error
- All repository secrets have been configured via gh CLI
This commit is contained in:
Greg
2025-07-01 10:50:05 -07:00
parent db01a880a7
commit 861832497d
2 changed files with 2 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ jobs:
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.GH_TOKEN }}
- name: Extract metadata
id: meta

View File

@@ -29,7 +29,7 @@ jobs:
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.GH_TOKEN }}
- name: Extract metadata
id: meta