Skip to content

v0.16.0: Fix yield flow; drop Distillation task in favor of task-wise distillation #28

v0.16.0: Fix yield flow; drop Distillation task in favor of task-wise distillation

v0.16.0: Fix yield flow; drop Distillation task in favor of task-wise distillation #28

Workflow file for this run

name: Upload Python Package to PyPI
on:
release:
types: [created]
workflow_dispatch:
jobs:
pypi-publish:
name: Publish release to PyPI
runs-on: ubuntu-latest
permissions:
id-token: write
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install build
- name: Build package
run: python -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_TOKEN }}