We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54723e1 commit dcd3c4fCopy full SHA for dcd3c4f
.github/workflows/publish_to_test_pypi.yaml
@@ -24,12 +24,12 @@ jobs:
24
- run: python -m pip install build
25
26
- name: Set dev version prior to upload (auto)
27
- if: ${{ github.events.inputs.devNumber == '' }}
+ if: ${{ github.event.inputs.devNumber == '' }}
28
run: python ./scripts/set-dev-version.py
29
30
- 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 }}
+ if: ${{ github.event.inputs.devNumber != '' }}
+ run: python ./scripts/set-dev-version.py -n ${{ github.event.inputs.devNumber }}
33
34
- run: python -m build .
35
0 commit comments