Fix: Path
Some checks failed
Build and Push to Gitea Registry / publish-images (push) Failing after 11m29s
Some checks failed
Build and Push to Gitea Registry / publish-images (push) Failing after 11m29s
This commit is contained in:
@@ -9,23 +9,26 @@ jobs:
|
|||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
- name: Login to Gitea Registry
|
- name: Login to Gitea Registry
|
||||||
uses: actions/docker/login@v1
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: repo.eldiaservicios.com
|
registry: repo.eldiaservicios.com
|
||||||
username: ${{ gitea.actor }}
|
username: ${{ gitea.actor }}
|
||||||
password: ${{ gitea.token }}
|
password: ${{ gitea.token }}
|
||||||
|
|
||||||
- name: Build and Push Backend
|
- name: Build and Push Backend
|
||||||
uses: actions/docker/build-push@v1
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: ./Backend
|
context: ./Backend
|
||||||
image: ${{ gitea.repository_owner }}/lab-backend
|
push: true
|
||||||
tags: latest
|
tags: repo.eldiaservicios.com/${{ gitea.repository_owner }}/lab-backend:latest
|
||||||
|
|
||||||
- name: Build and Push Frontend
|
- name: Build and Push Frontend
|
||||||
uses: actions/docker/build-push@v1
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: ./Frontend
|
context: ./Frontend
|
||||||
image: ${{ gitea.repository_owner }}/lab-frontend
|
push: true
|
||||||
tags: latest
|
tags: repo.eldiaservicios.com/${{ gitea.repository_owner }}/lab-frontend:latest
|
||||||
Reference in New Issue
Block a user