imprv: make antes go straight to total pot #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Package Application with Pyinstaller | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install uv | |
uses: astral-sh/setup-uv@v4 | |
- name: export requirements | |
run: uv pip compile pyproject.toml -o pyinstaller/requirements.txt | |
- name: PyInstaller Windows | |
uses: ./.github/actions/pyinstaller | |
with: | |
path: pyinstaller | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: hh-creator | |
path: pyinstaller/dist/windows |