Skip to content

chore: release 0.4.1 — --exclude globs + .repokgignore (#42) #7

chore: release 0.4.1 — --exclude globs + .repokgignore (#42)

chore: release 0.4.1 — --exclude globs + .repokgignore (#42) #7

Workflow file for this run

name: Release
on:
push:
tags: ["v*"]
jobs:
pypi:
runs-on: ubuntu-latest
environment: pypi
permissions:
id-token: write # PyPI trusted publishing (OIDC)
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install build
- run: python -m build
- uses: pypa/gh-action-pypi-publish@release/v1