Skip to content

Commit dcd3c4f

Browse files
committed
Fix typo in test-pypi workflow
'events -> event' caused this workflow file to fail to dispatch correctly.
1 parent 54723e1 commit dcd3c4f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish_to_test_pypi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,12 @@ jobs:
2424
- run: python -m pip install build
2525

2626
- name: Set dev version prior to upload (auto)
27-
if: ${{ github.events.inputs.devNumber == '' }}
27+
if: ${{ github.event.inputs.devNumber == '' }}
2828
run: python ./scripts/set-dev-version.py
2929

3030
- name: Set dev version prior to upload (workflow_dispatch)
31-
if: ${{ github.events.inputs.devNumber != '' }}
32-
run: python ./scripts/set-dev-version.py -n ${{ github.events.inputs.devNumber }}
31+
if: ${{ github.event.inputs.devNumber != '' }}
32+
run: python ./scripts/set-dev-version.py -n ${{ github.event.inputs.devNumber }}
3333

3434
- run: python -m build .
3535

0 commit comments

Comments
 (0)