From 077f12fab7a90d11c3c6c6b367ca7f4289b9634f Mon Sep 17 00:00:00 2001 From: Jonathan Branan Date: Wed, 17 Jul 2024 13:24:01 -0500 Subject: [PATCH] Updated build.yaml --- .gitea/workflows/build.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index a9ec522..701c83d 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -1,4 +1,5 @@ name: Build Inex Executable +run-name: Deploy to ${{ inputs.deploy_target }} by @${{ gitea.actor }} on: [push] jobs: @@ -11,8 +12,8 @@ jobs: python-version: '3.12.4' cache: 'pip' # caching pip dependencies - run: pip install -r requirements.txt - - run: pyinstaller --noconfirm --onefile --console "$GITEA_WORKSPACE/inex.py" + - run: pyinstaller --noconfirm --onefile --console "${{ gitea.workspace }}/inex.py" - uses: actions/upload-artifact@v4 with: name: Inex - path: $GITEA_WORKSPACE/output/inex.exe \ No newline at end of file + path: ${{ gitea.workspace }}/output/inex.exe \ No newline at end of file