From afb06cb23067c6695ee49e06819eb01eae1b43d2 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sun, 12 May 2024 11:13:59 +0200 Subject: [PATCH] WebUI not needed to build in CI --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f2e99c18..21a93ee5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: cyber: if: github.event_name != 'pull_request' uses: ./.github/workflows/cyber.yml - needs: [quality, test, webui] + needs: [quality, test] build: if: github.event_name != 'pull_request' uses: ./.github/workflows/build.yml @@ -30,4 +30,4 @@ jobs: PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }} DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} DOCKER_TOKEN: ${{ secrets.DOCKER_TOKEN }} - needs: [quality, test, webui, cyber] + needs: [quality, test]