Skip to content

Commit

Permalink
Fix the publish action
Browse files Browse the repository at this point in the history
  • Loading branch information
hajimes committed Dec 30, 2023
1 parent 4bfb1a1 commit afc80d3
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ on: # yamllint disable-line rule:truthy
repository:
description: 'The repository to upload the package to'
required: true
default: 'dummy'
default: 'none'
type: choice
options:
- dummy
- none
- testpypi
- pypi
cibw_skip:
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
with:
path: dist/*.tar.gz
publish:
if: github.event.inputs.repository != 'dummy'
if: github.event.inputs.repository != 'none'
name: 'Upload to PyPI/Test PyPI'
runs-on: ubuntu-22.04
needs: [build_wheels, build_sdist]
Expand Down

0 comments on commit afc80d3

Please sign in to comment.