Skip to content

Commit

Permalink
add 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 e5fc553 commit 74db661
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/publish_on_pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Publish on PyPi

on:
workflow_dispatch:
inputs:
tag_to_release:
description: 'Enter tag to release (example: v1.5.5). A tag with the same name must exist in the repository.'
type: string
required: true

jobs:
publish_on_pypi:
uses: MannLabs/alphashared/.github/workflows/publish_on_pypi.yml@v0
with:
# 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

0 comments on commit 74db661

Please sign in to comment.