Skip to content

Commit

Permalink
require version to be specified
Browse files Browse the repository at this point in the history
  • Loading branch information
Christopher Doris committed Jul 26, 2023
1 parent 65e2d88 commit 4bb5a2d
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/register-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,17 @@ name: Register to PyPI

on:
workflow_dispatch:
inputs:
git_ref:
description: Git tag, branch or commit to register (e.g. v0.9.10)
required: true

jobs:
register:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/checkout@v3
ref: ${{ inputs.git_ref }}
- name: Set up Python
uses: actions/setup-python@v3
with:
Expand Down

0 comments on commit 4bb5a2d

Please sign in to comment.