From 70be01b7046fe6026cbc19c0ae4a8b5f732a3213 Mon Sep 17 00:00:00 2001 From: David Stirling Date: Thu, 30 May 2024 21:34:58 +0100 Subject: [PATCH] Builds --- .github/workflows/build.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c1207a..01d0875 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,9 @@ jobs: with: python-version: '3.10' - name: Install deps - run: python -m pip install setuptools wheel pyinstaller + run: | + python -m pip install setuptools wheel pyinstaller + python -m pip install -r requirements.txt - name: Create Executable run: pyinstaller QuantiFish.py --noconfirm --name "QuantiFish" --windowed --add-data resources:resources ${{ matrix.release_args }} - name: Artifact upload