From afd891559294d99ec72e09449b5b9f1f7a2bceaf Mon Sep 17 00:00:00 2001 From: troll-os <39793416+troll-os@users.noreply.github.com> Date: Mon, 17 Jun 2024 14:18:48 +0200 Subject: [PATCH] Added steps to force python venv creation to ensure build (#7396) --- .github/workflows/test-feature-branch.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/test-feature-branch.yml b/.github/workflows/test-feature-branch.yml index 254a38ac2334..c662d2722e1e 100644 --- a/.github/workflows/test-feature-branch.yml +++ b/.github/workflows/test-feature-branch.yml @@ -61,6 +61,8 @@ jobs: - name: Build into Alpine run: | + python3 -m venv .venv + source .venv/bin/activate cd opencti-platform/opencti-front yarn install yarn build