Turn packages-dir param into packages_dir

PR #21 by @samuelhwilliams
This commit is contained in:
Sviatoslav Sydorenko 2019-12-07 01:54:28 -03:00 committed by GitHub
commit e777b33388
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -98,7 +98,7 @@ would now look like:
with:
user: __token__
password: ${{ secrets.pypi_password }}
packages-dir: custom-dir/
packages_dir: custom-dir/
```
## License

View file

@ -12,7 +12,7 @@ inputs:
repository_url:
description: The repository URL to use
required: false
packages-dir:
packages_dir:
description: The target directory for distribution
required: false
default: dist
@ -26,4 +26,4 @@ runs:
- ${{ inputs.user }}
- ${{ inputs.password }}
- ${{ inputs.repository_url }}
- ${{ inputs.packages-dir }}
- ${{ inputs.packages_dir }}