mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-09 10:23:35 -05:00
Fix typo in inputs
d7872a6165
changed the name of an input from `dist` to `packages-dir`,
but unfortunately it looks like GitHub actions expect underscores rather
than dashes, so deploys are currently broken with the following errors:
```
Run pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ***
packages-dir: dist
env:
pythonLocation: /opt/hostedtoolcache/Python/3.8.0/x64
/usr/bin/docker run --name [...] -e INPUT_PACKAGES-DIR [...]
/app/twine-upload.sh: line 22: INPUT_PACKAGES_DIR: unbound variable
This patch replaces the dash with an underscore.
Resolves #20
This commit is contained in:
parent
2ae9caf08e
commit
a8ddac2458
2 changed files with 3 additions and 3 deletions
|
@ -98,7 +98,7 @@ would now look like:
|
||||||
with:
|
with:
|
||||||
user: __token__
|
user: __token__
|
||||||
password: ${{ secrets.pypi_password }}
|
password: ${{ secrets.pypi_password }}
|
||||||
packages-dir: custom-dir/
|
packages_dir: custom-dir/
|
||||||
```
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
|
@ -12,7 +12,7 @@ inputs:
|
||||||
repository_url:
|
repository_url:
|
||||||
description: The repository URL to use
|
description: The repository URL to use
|
||||||
required: false
|
required: false
|
||||||
packages-dir:
|
packages_dir:
|
||||||
description: The target directory for distribution
|
description: The target directory for distribution
|
||||||
required: false
|
required: false
|
||||||
default: dist
|
default: dist
|
||||||
|
@ -26,4 +26,4 @@ runs:
|
||||||
- ${{ inputs.user }}
|
- ${{ inputs.user }}
|
||||||
- ${{ inputs.password }}
|
- ${{ inputs.password }}
|
||||||
- ${{ inputs.repository_url }}
|
- ${{ inputs.repository_url }}
|
||||||
- ${{ inputs.packages-dir }}
|
- ${{ inputs.packages_dir }}
|
||||||
|
|
Loading…
Reference in a new issue