From 99c9612e5a7b47a9662534da76334d309169d0c0 Mon Sep 17 00:00:00 2001 From: Josh Bradley Date: Fri, 1 Nov 2024 18:44:11 -0400 Subject: [PATCH] remove frontend build from github cicd --- .github/workflows/dev.yaml | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/.github/workflows/dev.yaml b/.github/workflows/dev.yaml index 889741c..24938ff 100644 --- a/.github/workflows/dev.yaml +++ b/.github/workflows/dev.yaml @@ -52,16 +52,3 @@ jobs: context: . file: docker/Dockerfile-backend push: false - build-frontend: - needs: [lint-check] - runs-on: ubuntu-latest - if: ${{ !github.event.pull_request.draft }} - steps: - - name: Checkout repository - uses: actions/checkout@v4 - - name: Build docker image - uses: docker/build-push-action@v2 - with: - context: . - file: docker/Dockerfile-frontend - push: false