build: bump version 0.0.2 -> 0.1.0 (#8) #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish to PyPI and GitHub Release | |
on: | |
# Run when a new tag has been created | |
push: | |
tags: | |
- "*" | |
# Run when a release has been created | |
# release: | |
# types: [created] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
pypi-github-publish: | |
name: Publish to PyPI and GitHub Release | |
runs-on: ubuntu-latest | |
# Specifying a GitHub environment is optional, but strongly encouraged | |
environment: release | |
permissions: | |
# This permission is needed for private repositories. | |
# contents: read | |
# IMPORTANT: this permission is mandatory for trusted publishing | |
id-token: write | |
# Required by action-gh-release | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pdm-project/setup-pdm@v4 | |
- name: Publish package distributions to PyPI | |
run: pdm publish | |
- name: Create Github release | |
uses: softprops/action-gh-release@v2 | |
if: startsWith(github.ref, 'refs/tags/') | |
with: | |
files: dist/* | |