We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 7fa6df0 + e467388 commit a1f6af6Copy full SHA for a1f6af6
1 file changed
.github/workflows/publish.yml
@@ -10,7 +10,7 @@ on:
10
test_pypi:
11
description: 'Publish to TestPyPI instead of PyPI'
12
required: false
13
- default: 'false'
+ default: false
14
type: boolean
15
16
jobs:
@@ -42,7 +42,7 @@ jobs:
42
43
publish-to-pypi:
44
name: Publish to PyPI
45
- if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && inputs.test_pypi == 'false')
+ if: github.event_name == 'release' || (github.event_name == 'workflow_dispatch' && inputs.test_pypi == false)
46
needs: build
47
runs-on: ubuntu-latest
48
@@ -69,7 +69,7 @@ jobs:
69
70
publish-to-testpypi:
71
name: Publish to TestPyPI
72
- if: github.event_name == 'workflow_dispatch' && inputs.test_pypi == 'true'
+ if: github.event_name == 'workflow_dispatch' && inputs.test_pypi == true
73
74
75
0 commit comments