pypi-publish/action.yml
Jesse Farebrother 4f4304928f Custom dist
2019-12-05 16:25:02 -07:00

29 lines
646 B
YAML

---
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
dist:
description: The target directory for distribution
required: false
default: dist
branding:
color: yellow
icon: upload-cloud
runs:
using: docker
image: Dockerfile
args:
- ${{ inputs.user }}
- ${{ inputs.password }}
- ${{ inputs.repository_url }}
- ${{ inputs.dist }}