Skip to content

PyPI Publish

PyPI Publish #2

Workflow file for this run

name: PyPI Publish
on:
push:
branches:
- main
jobs:
pypi-publish:
name: PyPI Publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: eifinger/setup-rye@v2
with:
enable-cache: true
- run: rye build --clean --wheel
- run: rye publish --skip-existing --token ${{ secrets.SALTSTACK_AGE_PYPI_TOKEN }}