Skip to content

Updated if False checks to if TYPE_CHECKING, and updated docs to latest #12

Updated if False checks to if TYPE_CHECKING, and updated docs to latest

Updated if False checks to if TYPE_CHECKING, and updated docs to latest #12

Workflow file for this run

name: publish
on:
push:
tags:
- v*
jobs:
run:
name: Upload SQLiteFrame ${{ github.event.inputs.version }} to PyPI
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel
pip install build
- name: Build package
run: |
python3 -m build --sdist --wheel .
- name: Publish to PyPI
uses: pypa/[email protected]
with:
user: __token__
password: ${{ secrets.PYPI_SQLITEFRAME_API_TOKEN }}