fix gitea action
All checks were successful
Build and Push Quartz Wiki / build-and-push (push) Successful in 46s

This commit is contained in:
vorpax
2026-01-05 23:11:37 +01:00
parent 58ea6686dd
commit 303645f3a5

View File

@@ -20,9 +20,9 @@ jobs:
- name: Login to Gitea Registry
uses: docker/login-action@v3
with:
registry: ${{ github.server_url }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
registry: ${{ env.REGISTRY }}
username: ${{ gitea.actor }}
password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and Push
uses: docker/build-push-action@v5
@@ -30,5 +30,5 @@ jobs:
context: .
push: true
tags: |
${{ github.server_url }}/${{ github.repository }}/quartz:${{ github.sha }}
${{ github.server_url }}/${{ github.repository }}/quartz:latest
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}