From b6dfb0130143870789c8d7830b6139819de24998 Mon Sep 17 00:00:00 2001 From: jdev08 <92550746+jdev082@users.noreply.github.com> Date: Mon, 22 Jan 2024 21:53:48 -0600 Subject: [PATCH] fix: include full path in build commands --- .github/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2bee953..a2c1f17 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,8 +22,8 @@ jobs: pip install -r requirements.txt - name: Build for Linux run: | - pyi-makespec main.py --onefile --noconsole - pyinstaller --clean main.spec + /usr/bin/pyi-makespec main.py --onefile --noconsole + /usr/bin/pyinstaller --clean main.spec ls dist - name: bottom text uses: actions/upload-artifact@v3