Inex/.gitea/workflows/build.yaml
Jonathan Branan b0d7ff930a
Some checks failed
Build Inex Executable / Build (push) Failing after 12s
updating automated workflow
2024-07-17 13:23:20 -05:00

18 lines
495 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 "$GITEA_WORKSPACE/inex.py"
- uses: actions/upload-artifact@v4
with:
name: Inex
path: $GITEA_WORKSPACE/output/inex.exe