diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 72be291..5bc800f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -146,10 +146,10 @@ jobs: # Produce a binary artifact and place it in the mounted volume run: | python3 -m venv ./venv - ./.venv/bin/python3 -m pip install -r requirements.txt - ./.venv/bin/python3 -m pip install pyinstaller + ./venv/bin/python3 -m pip install -r requirements.txt + ./venv/bin/python3 -m pip install pyinstaller cd cdsp - ../.venv/bin/python3 -m PyInstaller .\main.py --add-data .\config\:config --add-data .\build\:build --collect-data camilladsp_plot --name camillagui_backend + ../venv/bin/python3 -m PyInstaller ./main.py --add-data ./config/:config --add-data ./build/:build --collect-data camilladsp_plot --name camillagui_backend - name: Upload build uses: actions/upload-artifact@v4