Skip to content

Commit

Permalink
ci: fix publish.yml name and previous version of pdm setup action
Browse files Browse the repository at this point in the history
  • Loading branch information
janezlapajne committed Jun 30, 2024
1 parent 4db4d4e commit 7e414dc
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Publish To The Python Package Index (PyPI)
name: Publish To PyPI

on:
# workflow_run:
Expand All @@ -14,14 +14,15 @@ on:

jobs:
pypi-publish:
name: upload release to PyPI
name: Upload release to PyPI
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- name: Setup PDM
uses: pdm-project/setup-pdm@v4
- uses: actions/checkout@v3
- uses: pdm-project/setup-pdm@v3
with:
version: "head"
- name: Publish package distributions to PyPI
run: pdm publish

0 comments on commit 7e414dc

Please sign in to comment.