From 8ff40f0e4623ef13e65ccd07411e0adc8fbb3826 Mon Sep 17 00:00:00 2001 From: nicolargo Date: Sun, 12 May 2024 11:13:14 +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]