Skip to content

Separate building wheels workflow #129

Separate building wheels workflow

Separate building wheels workflow #129

Workflow file for this run

name: Release PyPi
on:
workflow_dispatch:
# release:
# types:
# - created
pull_request:
branches: [main]
jobs:
release:
name: Release to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build Wheels
uses: dottxt-ai/outlines-core/.github/workflows/build_wheels.yml@maturin
- uses: actions/download-artifact@v4
with:
pattern: wheels-*
merge-multiple: true
path: dist
- uses: actions/download-artifact@v4
with:
name: sdist
path: dist
# - name: Publish to PyPI
# uses: pypa/gh-action-pypi-publish@v1.5.0
# with:
# user: __token__
# password: ${{ secrets.PYPI_SECRET }}