Skip to content

Commit

Permalink
Add release.yml action (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
ValerianRey authored Sep 17, 2024
1 parent 83440b6 commit 802c399
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release

# Adapted from https://pdm-project.org/latest/usage/publish/
on:
release:
types: [published]

jobs:
pypi-publish:
name: Publish to PyPI
environment: release
runs-on: ubuntu-latest
permissions:
# This permission is needed for private repositories.
contents: read
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v4
- uses: pdm-project/setup-pdm@v4
- name: Publish package distributions to PyPI
run: pdm publish

0 comments on commit 802c399

Please sign in to comment.