#v.0.0.3 test
All checks were successful
Build / build-windows-binary (push) Successful in 34s
Build / build-linux-binary (push) Successful in 42s

This commit is contained in:
Jonathan Branan 2024-07-30 19:47:41 -05:00
parent b076be8333
commit f99801fa2b

View File

@ -2,18 +2,22 @@ name: Build
on: push on: push
jobs: jobs:
# build-linux-binary: build-linux-binary:
# runs-on: ubuntu-latest runs-on: ubuntu-latest
# steps: steps:
# - uses: actions/checkout@v4 - uses: actions/checkout@v4
# - uses: actions/setup-python@v5 - uses: actions/setup-python@v5
# with: with:
# python-version: '3.12.4' python-version: '3.12.4'
# cache: 'pip' # caching pip dependencies cache: 'pip' # caching pip dependencies
# - run: apt-get update - run: apt-get update
# - run: apt-get install unixodbc -y - run: apt-get install unixodbc -y
# - run: pip install -r requirements.txt - 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: softprops/action-gh-release@v2
if: startsWith(gitea.ref, 'refs/tags/')
with:
files: ${{ gitea.workspace }}/dist/inex
build-windows-binary: build-windows-binary:
runs-on: windows runs-on: windows