fix(ci): changed port to 3000 as 80 does not seem to work

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