Skip to content

Bump version to 0.4.1 #19

Bump version to 0.4.1

Bump version to 0.4.1 #19

Workflow file for this run

# Upload package to PyPI repository when a new tag is created.
# Uses trushed publishing to authenticate with PyPI.
name: Publish Python Package
on:
push:
tags:
- '*'
jobs:
build-n-publish:
name: Build and publish Python 🐍 distributions 📦 to PyPI
runs-on: ubuntu-latest
environment:
name: PyPI
url: https://pypi.org/p/randomnwn
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.x"
- name: Install build
run: |
python -m pip install --upgrade pip
pip install build
- name: Build package
run: python -m build
- name: Publish distribution 📦 to PyPI
uses: pypa/gh-action-pypi-publish@release/v1