Inex/.gitea/workflows/build.yaml
Jonathan Branan 8b88804c09
Some checks failed
Build Inex Executable / Build (push) Failing after 30s
texting building executable
2024-07-17 13:14:56 -05:00

18 lines
480 B
YAML

name: Build Inex Executable
on: [push]
jobs:
Build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: '3.12.4'
cache: 'pip' # caching pip dependencies
- 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