push differents images
Some checks failed
Workflow de prueba / Build and push images (push) Failing after 33s
Some checks failed
Workflow de prueba / Build and push images (push) Failing after 33s
This commit is contained in:
@@ -38,12 +38,22 @@ jobs:
|
|||||||
username: ${{ secrets.REGISTRY_USER }}
|
username: ${{ secrets.REGISTRY_USER }}
|
||||||
password: ${{ secrets.REGISTRY_PWD }}
|
password: ${{ secrets.REGISTRY_PWD }}
|
||||||
|
|
||||||
- name: Build
|
- name: Build frontend and push it to registry
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
context: .
|
context: frontend
|
||||||
push: true
|
push: true
|
||||||
tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/analytics:${{ env.BRANCH_NAME }}
|
tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/frontend-analytics-demo:${{ env.BRANCH_NAME }}
|
||||||
platforms: linux/amd64
|
platforms: linux/amd64
|
||||||
|
file: frontend/Dockerfile
|
||||||
|
|
||||||
|
- name: Build backend and push it to registry
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: frontend
|
||||||
|
push: true
|
||||||
|
tags: ${{ secrets.REGISTRY_URL }}/${{ env.DOCKER_ORG }}/backed-analytics-demo:${{ env.BRANCH_NAME }}
|
||||||
|
platforms: linux/amd64
|
||||||
|
file: backend/Dockerfile
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user