From f23f6e2648fb643e38dbc21609b589cec8ee40c6 Mon Sep 17 00:00:00 2001 From: salty Date: Wed, 7 Feb 2024 00:46:01 +0100 Subject: [PATCH] fix paths --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 78f7d09..7f30333 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -21,16 +21,16 @@ jobs: run: cd build && python3.10 -m venv venv - name: Install Dependencies - run: ./venv/bin/pip install PyYAML nuitka + run: cd build && ./venv/bin/pip install PyYAML nuitka - name: Install Dependencies - run: ./venv/bin/pip list + run: cd build && ./venv/bin/pip list - name: Compile binary - run: ./venv/bin/python -m nuitka sb.py --onefile -o sb + run: cd build && ./venv/bin/python -m nuitka sb.py --onefile -o sb - name: Copy binary and purge build directory - run: cd .. && cp ./build/sb sb && rm -rf ./build + run: cp ./build/sb sb && rm -rf ./build - name: List Directory Contents run: ls -la