From 0e5982ec622be42ed824b3b3ffd41f8b7d0175b0 Mon Sep 17 00:00:00 2001 From: Frederick Pruneau Date: Thu, 5 Feb 2026 15:25:15 -0500 Subject: [PATCH] Added docker image building --- .gitea/workflows/node-ci.yaml | 22 +++++++++++++--------- 1 file changed, 13 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/node-ci.yaml b/.gitea/workflows/node-ci.yaml index 0025baf..bddace7 100644 --- a/.gitea/workflows/node-ci.yaml +++ b/.gitea/workflows/node-ci.yaml @@ -95,13 +95,17 @@ jobs: webhookUrl: '${{ secrets.GOOGLE_CHAT_WEBHOOK }}' jobStatus: ${{ job.status }} title: Build failed + + - name: deploy + if: ${{ success() }} + run: docker build -t targo_frontend . - deploy: - needs: [lint, test, build] - runs-on: ubuntu-24.04 - if: github.ref == 'refs/heads/main' - permissions: - contents: read - id-token: write - steps: - - run: docker build -t targo_frontend . \ No newline at end of file + #deploy: + # needs: [lint, test, build] + # runs-on: ubuntu-24.04 + # if: github.ref == 'refs/heads/main' + # permissions: + # contents: read + # id-token: write + # steps: + # - run: docker build -t targo_frontend . \ No newline at end of file