Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
test_pypi:
description: 'Publish to TestPyPI instead of PyPI'
required: false
default: 'false'
default: false
type: boolean

jobs:
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:

publish-to-pypi:
name: Publish to PyPI
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)
needs: build
runs-on: ubuntu-latest

Expand All @@ -69,7 +69,7 @@ jobs:

publish-to-testpypi:
name: Publish to TestPyPI
if: github.event_name == 'workflow_dispatch' && inputs.test_pypi == 'true'
if: github.event_name == 'workflow_dispatch' && inputs.test_pypi == true
needs: build
runs-on: ubuntu-latest

Expand Down