Skip to content

Commit

Permalink
Fix publish
Browse files Browse the repository at this point in the history
  • Loading branch information
leng-yue committed Oct 10, 2023
1 parent 03412ac commit c903ab5
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,11 @@ jobs:
- uses: pdm-project/setup-pdm@v3
- name: Install Dependencies
run: pdm sync
- name: Build & publish
run: pdm publish -u __token__ -p ${{ secrets.PYPI_TOKEN }}
- name: Build
run: pdm build -d dist
- name: Publish release distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
verbose: true
user: __token__
password: ${{ secrets.PYPI_TOKEN }}

0 comments on commit c903ab5

Please sign in to comment.