Skip to content

Update version and changelog for upcoming v0.3.0 release. (#73) #14

Update version and changelog for upcoming v0.3.0 release. (#73)

Update version and changelog for upcoming v0.3.0 release. (#73) #14

Workflow file for this run

---
name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI
on: # NOLINT
push:
tags:
- "*"
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/p/statick-md
permissions:
id-token: write
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.11"
cache: 'pip'
- name: Install tools
run: |
pip install .[dist]
- name: Build a binary wheel and a source tarball
run: |
pip install -q build
python -m build
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1