From 8b88804c09351ebdde19c80d8028c99583492020 Mon Sep 17 00:00:00 2001 From: Jonathan Branan Date: Wed, 17 Jul 2024 13:14:56 -0500 Subject: [PATCH] texting building executable --- .gitea/workflows/build.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 6f9cfef..17eeb81 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -10,4 +10,9 @@ jobs: with: python-version: '3.12.4' cache: 'pip' # caching pip dependencies - - run: pip install -r requirements.txt \ No newline at end of file + - run: pip install -r requirements.txt + - run: pyinstaller --noconfirm --onefile --console inex.py + - uses: actions/upload-artifact@v4 + with: + name: Inex + path: /workspace/jblu/Inex/output/inex.exe \ No newline at end of file