Skip to content

Commit

Permalink
try workflow-dispatch on web (#688)
Browse files Browse the repository at this point in the history
  • Loading branch information
lanpa committed Feb 12, 2023
1 parent d167c85 commit a4a19db
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
on:
workflow_dispatch:
inputs:
publish_version:
required: true
type: string

jobs:
log-the-inputs:
runs-on: ubuntu-latest
steps:
- run: |
echo "target version: ${{ github.event.inputs.publish_version }}"
env:
VERSION: ${{ github.event.inputs.publish_version }}

0 comments on commit a4a19db

Please sign in to comment.