mirror of
https://github.com/pypa/gh-action-pypi-publish.git
synced 2024-11-09 10:23:35 -05:00
Merge commit 'pull/origin/19'
This change adds an Action argument for specifying a custom directory that contains package distributions to be uploaded. It's called `packages-dir` now. The default value is `dist`. Resolves #10.
This commit is contained in:
commit
2ae9caf08e
3 changed files with 23 additions and 4 deletions
14
README.md
14
README.md
|
@ -86,6 +86,20 @@ The action invocation in this case would look like:
|
||||||
repository_url: https://test.pypi.org/legacy/
|
repository_url: https://test.pypi.org/legacy/
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### Customizing target package dists directory
|
||||||
|
|
||||||
|
You can change the default target directory of `dist/`
|
||||||
|
to any directory of your liking. The action invocation
|
||||||
|
would now look like:
|
||||||
|
|
||||||
|
```yml
|
||||||
|
- name: Publish package to PyPI
|
||||||
|
uses: pypa/gh-action-pypi-publish@master
|
||||||
|
with:
|
||||||
|
user: __token__
|
||||||
|
password: ${{ secrets.pypi_password }}
|
||||||
|
packages-dir: custom-dir/
|
||||||
|
```
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,10 @@ inputs:
|
||||||
repository_url:
|
repository_url:
|
||||||
description: The repository URL to use
|
description: The repository URL to use
|
||||||
required: false
|
required: false
|
||||||
|
packages-dir:
|
||||||
|
description: The target directory for distribution
|
||||||
|
required: false
|
||||||
|
default: dist
|
||||||
branding:
|
branding:
|
||||||
color: yellow
|
color: yellow
|
||||||
icon: upload-cloud
|
icon: upload-cloud
|
||||||
|
@ -22,3 +26,4 @@ runs:
|
||||||
- ${{ inputs.user }}
|
- ${{ inputs.user }}
|
||||||
- ${{ inputs.password }}
|
- ${{ inputs.password }}
|
||||||
- ${{ inputs.repository_url }}
|
- ${{ inputs.repository_url }}
|
||||||
|
- ${{ inputs.packages-dir }}
|
||||||
|
|
|
@ -17,14 +17,14 @@ then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[
|
if [[
|
||||||
! -d dist/ ||
|
! -d ${INPUT_PACKAGES_DIR%%/}/ ||
|
||||||
"`ls -l dist/*.tar.gz dist/*.whl`" == "total 0"
|
"`ls -l ${INPUT_PACKAGES_DIR%%/}/*.tar.gz ${INPUT_PACKAGES_DIR%%/}/*.whl`" == "total 0"
|
||||||
]]
|
]]
|
||||||
then
|
then
|
||||||
>&2 echo \
|
>&2 echo \
|
||||||
[WARNING]: \
|
[WARNING]: \
|
||||||
It looks like there are no Python distribution packages to \
|
It looks like there are no Python distribution packages to \
|
||||||
publish in the '"dist/"' directory. Please verify that they \
|
publish in the directory '"${INPUT_PACKAGES_DIR%%/}/"'. Please verify that they \
|
||||||
are in place should you face this problem.
|
are in place should you face this problem.
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
@ -32,4 +32,4 @@ fi
|
||||||
TWINE_USERNAME="$INPUT_USER" \
|
TWINE_USERNAME="$INPUT_USER" \
|
||||||
TWINE_PASSWORD="$INPUT_PASSWORD" \
|
TWINE_PASSWORD="$INPUT_PASSWORD" \
|
||||||
TWINE_REPOSITORY_URL="$INPUT_REPOSITORY_URL" \
|
TWINE_REPOSITORY_URL="$INPUT_REPOSITORY_URL" \
|
||||||
exec twine upload dist/*
|
exec twine upload ${INPUT_PACKAGES_DIR%%/}/*
|
||||||
|
|
Loading…
Reference in a new issue