Files
Inex/.gitea/workflows/build.yaml
Jonathan Branan 0290f3e037
Some checks failed
Build Inex Executable / Build (push) Failing after 12s
trying changes to apt-get
2024-07-17 13:52:39 -05:00

22 lines
706 B
YAML

name: Build Inex Executable
run-name: Deploy to ${{ inputs.deploy_target }} by @${{ gitea.actor }}
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: rm /etc/apt/sources.list.d/mssql-release.list
- run: apt-get install unixodbc
- run: pip install -r requirements.txt
- run: ls ${{ gitea.workspace }}
- run: pyinstaller --noconfirm --onefile --console ${{ gitea.workspace }}/inex.py
- uses: actions/upload-artifact@v4
with:
name: Inex
path: ${{ gitea.workspace }}/output/inex.exe