fix(ci): changed port to 80 as 3000 does not seem to work
Build and Push Docker Images / build-frontend (push) Successful in 1m38s
Build and Push Docker Images / build-api (push) Successful in 1m51s

This commit is contained in:
2026-03-15 00:43:00 -04:00
parent 44b6c79713
commit f87572ab7e
+4 -4
View File
@@ -27,7 +27,7 @@ jobs:
id: tags
shell: sh
run: |
REGISTRY="gitea.gitea.svc.cluster.local:3000"
REGISTRY="gitea.gitea.svc.cluster.local:80"
REPO_OWNER="${{ gitea.repository_owner }}"
REPO_NAME="${{ gitea.repository }}"
@@ -60,7 +60,7 @@ jobs:
- name: Login to registry
shell: sh
run: |
echo "${{ secrets.PERSONAL_TOKEN }}" | docker login gitea.gitea.svc.cluster.local:3000 -u "${{ gitea.actor }}" --password-stdin
echo "${{ secrets.PERSONAL_TOKEN }}" | docker login gitea.gitea.svc.cluster.local:80 -u "${{ gitea.actor }}" --password-stdin
- name: Build and push API image
shell: sh
@@ -97,7 +97,7 @@ jobs:
id: tags
shell: sh
run: |
REGISTRY="gitea.gitea.svc.cluster.local:3000"
REGISTRY="gitea.gitea.svc.cluster.local:80"
REPO_OWNER="${{ gitea.repository_owner }}"
REPO_NAME="${{ gitea.repository }}"
@@ -130,7 +130,7 @@ jobs:
- name: Login to registry
shell: sh
run: |
echo "${{ secrets.PERSONAL_TOKEN }}" | docker login gitea.gitea.svc.cluster.local:3000 -u "${{ gitea.actor }}" --password-stdin
echo "${{ secrets.PERSONAL_TOKEN }}" | docker login gitea.gitea.svc.cluster.local:80 -u "${{ gitea.actor }}" --password-stdin
- name: Build and push frontend image
shell: sh