From 070af13d8647d5b2425aa7726c781daae3736b04 Mon Sep 17 00:00:00 2001 From: Guillermo Date: Sat, 14 Feb 2026 11:57:57 +0000 Subject: [PATCH] push differents images --- .gitea/workflows/example.yaml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/example.yaml b/.gitea/workflows/example.yaml index fe8abf3..e21f970 100644 --- a/.gitea/workflows/example.yaml +++ b/.gitea/workflows/example.yaml @@ -38,12 +38,22 @@ jobs: username: ${{ secrets.REGISTRY_USER }} password: ${{ secrets.REGISTRY_PWD }} - - name: Build + - name: Build frontend and push it to registry uses: docker/build-push-action@v5 with: - context: . + context: frontend 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 + 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