Skip to content

Build and/or Publish refs/tags/0.1.3 #26

Build and/or Publish refs/tags/0.1.3

Build and/or Publish refs/tags/0.1.3 #26

Workflow file for this run

name: publish
run-name: Build and/or Publish ${{ github.ref }}
on:
push:
jobs:
build-n-publish:
name: Build and/or publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: "3.8"
- run: >-
python -m
pip install
build
--user
- run: >-
python -m
build
--sdist
--wheel
--outdir dist/
.
- if: startsWith(github.ref, 'refs/tags')
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}