From c44ebca61f8eb2a0c1e72ec7073c0fde6afa85ea Mon Sep 17 00:00:00 2001 From: Blitblank Date: Sat, 28 Feb 2026 15:43:43 -0600 Subject: [PATCH] fix urls --- .gitea/workflows/deploy-client.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy-client.yaml b/.gitea/workflows/deploy-client.yaml index bcd315b..034675a 100644 --- a/.gitea/workflows/deploy-client.yaml +++ b/.gitea/workflows/deploy-client.yaml @@ -18,17 +18,17 @@ jobs: - name: Login to Registry run: | - echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login yourdomain.com \ + echo "${{ secrets.REGISTRY_PASSWORD }}" | docker login git.vxbard.net \ -u ${{ secrets.REGISTRY_USERNAME }} \ --password-stdin - name: Build image run: | - docker build -t yourdomain.com/owner/frontend:latest . + docker build -t git.vxbard.net/homeburger/agologum-client:latest ./client - name: Push run: | - docker push yourdomain.com/owner/frontend:latest + docker push git.vxbard.net/homeburger/agologum-client:latest - name: Deploy run: |