Skip to content

Commit

Permalink
adding workflow (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
weinbe58 authored Sep 1, 2023
1 parent 4309d18 commit 611b695
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Publish to PyPI
on:
push:
tags:
- "**"

jobs:
pypi-publish:
name: upload release to PyPI
runs-on: ubuntu-latest
permissions:
# IMPORTANT: this permission is mandatory for trusted publishing
id-token: write
steps:
- uses: actions/checkout@v3

- uses: pdm-project/setup-pdm@v3

- name: Publish package distributions to PyPI
run: pdm publish

0 comments on commit 611b695

Please sign in to comment.