Skip to content

Ft: read the docs doc upload #4

Ft: read the docs doc upload

Ft: read the docs doc upload #4

name: pypi upload
on:
push:
branches: ["main", "ft-packaging"]
jobs:
wheel_build_full:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: build wheels and sdist
run: pipx run build
- uses: actions/upload-artifact@v3
with:
path: ./dist/*
upload_pypi:
needs: [wheel_build_full]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
- uses: pypa/[email protected]
with:
skip_existing: true
user: __token__
password: ${{ secrets.PYPI_RELESO }}