Skip to content

Commit

Permalink
release workflow_dispatch
Browse files Browse the repository at this point in the history
  • Loading branch information
tschaume committed Nov 10, 2022
1 parent 0c53b60 commit d639200
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/release.yml
Expand Up @@ -4,6 +4,14 @@ on:
release:
types: [published]

workflow_dispatch:
inputs:
publishPackage:
description: "publish Package"
required: true
default: true
type: boolean

jobs:
deploy:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -50,6 +58,7 @@ jobs:
git push
- name: Publish package
if: ${{ inputs.publishPackage }}
uses: pypa/gh-action-pypi-publish@release/v1.5
with:
user: __token__
Expand Down

0 comments on commit d639200

Please sign in to comment.