test tag
All checks were successful
Build / build-windows-binary (push) Successful in 34s

This commit is contained in:
Jonathan Branan 2024-07-30 19:40:12 -05:00
parent 5cae8105d0
commit b076be8333

View File

@ -14,12 +14,7 @@ jobs:
# - 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
# - name: Release
# 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
permissions: permissions:
@ -30,10 +25,9 @@ jobs:
with: with:
python-version: '3.12.4' python-version: '3.12.4'
cache: 'pip' # caching pip dependencies cache: 'pip' # caching pip dependencies
# - name: Upload Release Asset
## env:
# GITHUB_TOKEN: ${{ secrets.GITEA_TOKEN }}
- run: python -m pip install -r requirements.txt - run: python -m pip install -r requirements.txt
- run: pyinstaller --noconfirm --onefile --console ${{ gitea.workspace }}/inex.py - run: pyinstaller --noconfirm --onefile --console ${{ gitea.workspace }}/inex.py
# run: gh release upload <release_tag> <a_file> - uses: softprops/action-gh-release@v2
- run: dir ${{ gitea.workspace }} if: startsWith(gitea.ref, 'refs/tags/')
with:
files: ${{ gitea.workspace }}/dist/inex.exe