0.9.1 #51
Workflow file for this run
This file contains hidden or 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: Publish Release | |
on: | |
release: | |
types: [published] | |
env: | |
PYTHON_VERSION: "3.11" | |
UV_VERSION: "0.7.13" | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install uv | |
uses: astral-sh/setup-uv@v6 | |
with: | |
version: ${{ env.UV_VERSION }} | |
enable-cache: true | |
python-version: ${{ env.PYTHON_VERSION }} # sets UV_PYTHON | |
cache-dependency-glob: | | |
pyproject.toml | |
uv.lock | |
- name: Install dependencies | |
run: | | |
uv sync --frozen | |
- name: Build package | |
run: uv build | |
- name: Upload build | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist/ | |
publish: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out repository | |
uses: actions/checkout@v4 | |
- name: Install Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ env.PYTHON_VERSION }} | |
- name: Install uv | |
uses: astral-sh/setup-uv@v6 | |
with: | |
version: ${{ env.UV_VERSION }} | |
enable-cache: true | |
python-version: ${{ env.PYTHON_VERSION }} # sets UV_PYTHON | |
cache-dependency-glob: | | |
pyproject.toml | |
uv.lock | |
- name: Install dependencies | |
run: | | |
uv sync --frozen | |
- name: Download build artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: dist | |
path: dist/ | |
- name: Publish to PyPI | |
env: | |
UV_PUBLISH_TOKEN: ${{ secrets.PYPI }} | |
run: uv publish |