Skip to content

v0.0.1

v0.0.1 #1

Workflow file for this run

name: publish
on:
release:
types: [published]
jobs:
pypi-publish:
name: upload release to PyPI
runs-on: ubuntu-latest
environment: release
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- name: setup-python
uses: actions/setup-python@v3
with:
python-version: "3.x"
architecture: "x64"
- name: install pypa/build
run: >-
python -m
pip install
build
--user
- name: build sdist(tarball) and bdist(wheel) to dist/
run: >- # = python -m build . works the same way by default
python -m
build
--sdist
--wheel
--outdir dist/
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1