Skip to content

Merge pull request #1124 from BCDA-APS/1123-specwriter+baseline #160

Merge pull request #1124 from BCDA-APS/1123-specwriter+baseline

Merge pull request #1124 from BCDA-APS/1123-specwriter+baseline #160

Workflow file for this run

name: Publish Python 🐍 distributions πŸ“¦ to PyPI and TestPyPI
on:
# Triggers the workflow on push events but only for the main branch
push:
branches:
- main
tags:
- "*" # all tags
permissions:
id-token: write
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions πŸ“¦ to PyPI and TestPyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.13"
- name: Install pypa/build
run: python -m pip install build --user
- name: Build a binary wheel and a source tarball
run: python -m build --sdist --wheel --outdir dist/ .
- name: Install twine
run: python -m pip install twine
- name: Check package metadata
run: twine check dist/*
- name: Publish distribution πŸ“¦ to PyPI
if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
user: __token__
# password: ${{ secrets.PYPI_API_TOKEN }}
verbose: true