Update .gitea/workflows/build.yaml
Some checks failed
Build and Push / build (push) Failing after 6m30s
Some checks failed
Build and Push / build (push) Failing after 6m30s
Changing registry url to local ip to ignore cloudflare limit
This commit is contained in:
@@ -13,7 +13,7 @@ jobs:
|
|||||||
- name: Login to Gitea Container Registry
|
- name: Login to Gitea Container Registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: gitea.kansaigaijin.com
|
registry: 192.168.0.10:8418
|
||||||
username: ${{ gitea.actor }}
|
username: ${{ gitea.actor }}
|
||||||
password: ${{ secrets.docker_builder }}
|
password: ${{ secrets.docker_builder }}
|
||||||
- name: Build and push backend
|
- name: Build and push backend
|
||||||
@@ -22,10 +22,10 @@ jobs:
|
|||||||
context: ./backend
|
context: ./backend
|
||||||
target: runtime
|
target: runtime
|
||||||
push: true
|
push: true
|
||||||
tags: gitea.kansaigaijin.com/${{ env.REPO_LC }}/backend:latest
|
tags: 192.168.0.10:8418/${{ env.REPO_LC }}/backend:latest
|
||||||
- name: Build and push frontend
|
- name: Build and push frontend
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: ./frontend
|
context: ./frontend
|
||||||
push: true
|
push: true
|
||||||
tags: gitea.kansaigaijin.com/${{ env.REPO_LC }}/frontend:latest
|
tags: 192.168.0.10:8418/${{ env.REPO_LC }}/frontend:latest
|
||||||
|
|||||||
Reference in New Issue
Block a user