fix: Update registry secrets in build and deploy workflows for consistency
Some checks failed
Build and Push Docker Image / build-and-push (push) Failing after 5s
Deploy to Server / deploy (push) Failing after 2s
Run Tests / test (push) Has been cancelled

This commit is contained in:
2025-10-23 17:39:47 +02:00
parent f228eac61f
commit 0e51a3883d
2 changed files with 6 additions and 6 deletions

View File

@@ -14,15 +14,15 @@ jobs:
- name: Login to Gitea Registry
uses: docker/login-action@v1
with:
registry: ${{ secrets.GITEA_REGISTRY }}
username: ${{ secrets.GITEA_USERNAME }}
password: ${{ secrets.GITEA_PASSWORD }}
registry: ${{ secrets.REGISTRY_URL }}
username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
push: true
tags: ${{ secrets.GITEA_REGISTRY }}/${{ secrets.GITEA_USERNAME }}/calminer:latest
tags: ${{ secrets.REGISTRY_REGISTRY }}/${{ secrets.REGISTRY_USERNAME }}/calminer:latest
cache-from: type=gha
cache-to: type=gha,mode=max