Skip to content

Commit

Permalink
fix new publish on pypi workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
mschwoer committed Aug 27, 2024
1 parent 74db661 commit 49d3394
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/create_release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# Create a draft release and build and upload all installers to it.
name: Create Draft Release

on:
workflow_dispatch:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/publish_on_pypi.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# Publish and test releases on Test-PyPI and PyPI.
name: Publish on PyPi

on:
Expand All @@ -15,7 +16,8 @@ jobs:
# see the documentation of the workflow for more information on the parameters
package_name: peptdeep
tag_to_release: ${{ inputs.tag_to_release }}
test_pypi_api_token: ${{ secrets.TEST_PYPI_PEPTDEEP_API_TOKEN }}
pypi_api_token: ${{ secrets.PYPI_PEPTDEEP_API_TOKEN }}
python_version: 3.9
use_pyproject_toml: false
secrets:
test_pypi_api_token: ${{ secrets.TEST_PYPI_PEPTDEEP_API_TOKEN }}
pypi_api_token: ${{ secrets.PYPI_PEPTDEEP_API_TOKEN }}

0 comments on commit 49d3394

Please sign in to comment.