From b0d7ff930a0eea430443968b9a86fc991a281807 Mon Sep 17 00:00:00 2001 From: Jonathan Branan Date: Wed, 17 Jul 2024 13:23:20 -0500 Subject: [PATCH] updating automated workflow --- .gitea/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 05ae817..a9ec522 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -11,8 +11,8 @@ jobs: python-version: '3.12.4' cache: 'pip' # caching pip dependencies - run: pip install -r requirements.txt - - run: pyinstaller --noconfirm --onefile --console "/workspace/jblu/Inex/inex.py" + - run: pyinstaller --noconfirm --onefile --console "$GITEA_WORKSPACE/inex.py" - uses: actions/upload-artifact@v4 with: name: Inex - path: /workspace/jblu/Inex/output/inex.exe \ No newline at end of file + path: $GITEA_WORKSPACE/output/inex.exe \ No newline at end of file