Update secret name to FORGEJO_TOKEN
All checks were successful
Build and Push Docker Image / build-and-push (push) Successful in 15s

Change from GITEA_TOKEN to FORGEJO_TOKEN to match the
configured repository secret.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Kevin Sivic 2025-12-01 07:56:11 -05:00
parent 7a20ce077b
commit 49c44beb72

View file

@ -17,7 +17,10 @@ jobs:
git checkout ${{ github.sha }} git checkout ${{ github.sha }}
- name: Log in to Forgejo Container Registry - name: Log in to Forgejo Container Registry
run: echo "${{ secrets.GITEA_TOKEN }}" | docker login forgejo.sivic.me -u ${{ github.actor }} --password-stdin run: |
echo "Logging in as: ${{ github.actor }}"
echo "${{ secrets.FORGEJO_TOKEN }}" | docker login forgejo.sivic.me -u ${{ github.actor }} --password-stdin
echo "Login exit code: $?"
- name: Build and push Docker images - name: Build and push Docker images
run: | run: |