From 37547d123391073e91f25335ee05f83400e130b2 Mon Sep 17 00:00:00 2001 From: k4yt3x Date: Tue, 12 May 2020 02:40:55 -0400 Subject: [PATCH] changed workflow default working directory --- .github/workflows/build.yml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index bf8944a..a4dd83b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,6 +4,10 @@ on: push: branches: [master] +defaults: + run: + working-directory: src + jobs: build: runs-on: windows-latest @@ -25,7 +29,7 @@ jobs: --onefile ` --add-data="wrappers;wrappers" ` --icon="images\video2x.ico" ` - src/video2x.py + video2x.py - name: Build Video2X GUI run: | pyinstaller --noconfirm --log-level=WARN ` @@ -35,10 +39,10 @@ jobs: --add-data="video2x_gui.ui;." ` --add-data="wrappers;wrappers" ` --icon="images\video2x.ico" ` - src/video2x_gui.py + video2x_gui.py - name: Build Video2X Setup Script run: | pyinstaller --noconfirm --log-level=WARN ` --onefile ` --icon="images\video2x.ico" ` - src/video2x_setup.py + video2x_setup.py