Skip to content

docs: enhance README with detailed quick start guide and feature desc… #12

docs: enhance README with detailed quick start guide and feature desc…

docs: enhance README with detailed quick start guide and feature desc… #12

Workflow file for this run

name: Publish to PyPI via uv
on:
workflow_dispatch:
push:
tags:
- "v*"
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v5
- name: Set up uv
uses: astral-sh/setup-uv@v7
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.12"
- name: Build the package
run: uv build
- name: Publish to PyPI
run: uv publish --token ${{ secrets.PYPI_PUBLISHER }}
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
body: See [CHANGELOG](https://github.com/allmonday/sqlmodel-graphql/blob/master/CHANGELOG.md) for details.
generate_release_notes: true
files: |
dist/*.tar.gz
dist/*.whl