Update .gitea/workflows/docker-build.yml
All checks were successful
Build and Push Docker Image / build (push) Successful in 6s

This commit is contained in:
2026-03-29 00:52:45 -05:00
parent 4f6361b4ba
commit b569fc6067

View File

@@ -15,11 +15,11 @@ jobs:
- name: Log in to Gitea Container Registry - name: Log in to Gitea Container Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: git.alwisp.com registry: registry.alwisp.com
username: ${{ gitea.repository_owner }} username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_TOKEN }} password: ${{ secrets.REGISTRY_TOKEN }}
- name: Build and Push - name: Build and Push
run: | run: |
docker build -t git.alwisp.com/${{ gitea.repository_owner }}/${{ gitea.repository }}:latest . docker build -t registry.alwisp.com/${{ gitea.repository_owner }}/${{ gitea.repository }}:latest .
docker push git.alwisp.com/${{ gitea.repository_owner }}/${{ gitea.repository }}:latest docker push registry.alwisp.com/${{ gitea.repository_owner }}/${{ gitea.repository }}:latest