Skip to content

Update pypi_release.yml #1

Update pypi_release.yml

Update pypi_release.yml #1

Workflow file for this run

# Build the package and publish it to PyPI after tests pass.
name: Publish to PyPI
on:
push:
branches:
- main
tags:
- "*"
jobs:
publish:
name: publish
runs-on: ubuntu-latest
steps:
- name: Checkout source
uses: actions/checkout@v3
- name: Set up Python 3.11
uses: actions/setup-python@v4
with:
python-version: 3.11
- name: Build package
run: |
python -m pip install -U pip build
python -m build
- name: Publish
uses: pypa/gh-action-pypi-publish@v1.5.0
with:
user: __token__
password: ${{ secrets.DPLPY_PYPI }}