2019-08-20 16:48:52 -04:00
|
|
|
---
|
|
|
|
name: pypi-publish
|
|
|
|
description: Upload Python distribution packages to PyPI
|
|
|
|
inputs:
|
|
|
|
user:
|
|
|
|
description: PyPI user
|
|
|
|
required: false
|
|
|
|
default: __token__
|
|
|
|
password:
|
|
|
|
description: Password for your PyPI user or an access token
|
|
|
|
required: true
|
|
|
|
repository_url:
|
|
|
|
description: The repository URL to use
|
|
|
|
required: false
|
2019-12-06 07:38:52 -05:00
|
|
|
packages-dir:
|
2019-12-05 18:25:02 -05:00
|
|
|
description: The target directory for distribution
|
|
|
|
required: false
|
|
|
|
default: dist
|
2019-08-20 16:48:52 -04:00
|
|
|
branding:
|
|
|
|
color: yellow
|
|
|
|
icon: upload-cloud
|
|
|
|
runs:
|
|
|
|
using: docker
|
|
|
|
image: Dockerfile
|
|
|
|
args:
|
2019-08-23 07:11:24 -04:00
|
|
|
- ${{ inputs.user }}
|
|
|
|
- ${{ inputs.password }}
|
|
|
|
- ${{ inputs.repository_url }}
|
2019-12-06 07:38:52 -05:00
|
|
|
- ${{ inputs.packages-dir }}
|