mirror of https://github.com/tiangolo/fastapi.git
40 lines
937 B
YAML
40 lines
937 B
YAML
name: Publish
|
|
|
|
on:
|
|
release:
|
|
types:
|
|
- created
|
|
|
|
jobs:
|
|
publish:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
package:
|
|
- fastapi
|
|
- fastapi-slim
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
steps:
|
|
- name: Dump GitHub context
|
|
env:
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
run: echo "$GITHUB_CONTEXT"
|
|
- uses: actions/checkout@v6
|
|
- name: Set up Python
|
|
uses: actions/setup-python@v6
|
|
with:
|
|
python-version-file: ".python-version"
|
|
# Issue ref: https://github.com/actions/setup-python/issues/436
|
|
# cache: "pip"
|
|
# cache-dependency-path: pyproject.toml
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v7
|
|
- name: Build distribution
|
|
run: uv build
|
|
env:
|
|
TIANGOLO_BUILD_PACKAGE: ${{ matrix.package }}
|
|
- name: Publish
|
|
run: uv publish
|