docs: Update TODO #432
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: Python Package | |
on: | |
workflow_dispatch: | |
workflow_call: | |
push: | |
pull_request: | |
jobs: | |
build-wheels: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python environment | |
uses: ./.github/actions/setup-python | |
with: | |
python-version: "3.11" | |
- name: Build package with Poetry | |
run: poetry build | |
- name: Upload Wheels | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ktoolbox-wheels | |
path: dist | |
create-executable: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [ windows-latest, ubuntu-latest, macos-latest ] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Python environment | |
uses: ./.github/actions/setup-python | |
with: | |
python-version: "3.11" | |
- name: Create Executable | |
uses: ./.github/actions/pyinstaller | |
- name: Upload Executable | |
uses: actions/upload-artifact@v4 | |
with: | |
name: ktoolbox-executable-${{ runner.os }}-x86_64 | |
path: dist |