Skip to content

py: version 0.0.7

py: version 0.0.7 #3

Workflow file for this run

name: Publish Python package
on:
push:
tags:
- 'py/*'
jobs:
pypi-publish:
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: release
url: https://pypi.org/p/gnumake-tokenpool
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
- run: python3 -m pip install build
- run: python3 -m build
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1