Skip to content

v0.4 - renditions and focal points #6

v0.4 - renditions and focal points

v0.4 - renditions and focal points #6

Workflow file for this run

name: Publish to PyPI
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read # to fetch code (actions/checkout)
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-python@v5
with:
python-version: '3.11'
cache: "pip"
cache-dependency-path: "**/pyproject.toml"
- name: ⬇️ Install build dependencies
run: |
python -m pip install -U flit
- name: 🏗️ Build
run: python -m flit build
- uses: actions/upload-artifact@v4
with:
path: ./dist
# https://docs.pypi.org/trusted-publishers/using-a-publisher/
pypi-publish:
needs: build
environment: 'publish'
name: ⬆️ Upload release to PyPI
runs-on: ubuntu-latest
permissions:
# Mandatory for trusted publishing
id-token: write
steps:
- uses: actions/download-artifact@v4
- name: 🚀 Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
packages-dir: artifact/
print-hash: true