Skip to content

add .github/workflows/pypi-release.yml #5

add .github/workflows/pypi-release.yml

add .github/workflows/pypi-release.yml #5

Workflow file for this run

name: pypi-publish
on:
push:
branches: ["pypi-release-action"]
pull_request:
schedule:
- cron: "33 1 * * 3"
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/pyglossary
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Create release
run: |
sudo rm -rf dist/* build/* || true
python3 setup.py sdist bdist_wheel
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true
verbose: true
password: ${{ secrets.PYPI_API_TOKEN }}