fix: Update Docker login credentials

Replaces actor-based credentials with Forgejo secrets
to authenticate against the private registry.
This commit is contained in:
Kumi 2025-02-26 12:01:45 +01:00
parent 7cdb89c4be
commit 076869592c
No known key found for this signature in database
GPG key ID: ECBCC9082395383F

View file

@ -21,8 +21,8 @@ jobs:
uses: docker/login-action@v3
with:
registry: git.private.coffee
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
username: ${{ secrets.FORGEJO_USER }}
password: ${{ secrets.FORGEJO_TOKEN }}
- name: Build and push to Docker Hub
uses: docker/build-push-action@v5
with: