Skip to content
package

GitHub Action

pypi-publisher

v3 Latest version

pypi-publisher

package

pypi-publisher

Lightweight composite action to upload Python distribution packages to PyPI

Installation

Copy and paste the following snippet into your .yml file.

              

- name: pypi-publisher

uses: thevickypedia/pypi-publisher@v3

Learn more about this action in thevickypedia/pypi-publisher

Choose a version

made-with-gha

pages

PyPi Publisher

pypi-publisher is a GitHub action designed to upload python projects to Pypi repository.

Install Guide

Add pypi-publisher action to your build workflow

  • In your GitHub repository, select the Actions tab and either add or edit a workflow.
  • Navigate to pypi-publisher in Marketplace.
  • Copy and paste the yaml into your workflow.

[OR]

Copy & paste the following workflow definition into your project .github/workflows/pypi-publish.yml

name: PyPi Publisher

on:
  workflow_dispatch:
  release:
    types: [ published ]

jobs:
  pypi-publisher:
    runs-on: ubuntu-latest
    steps:
      - uses: thevickypedia/pypi-publisher@v3
        env:
          token: ${{ secrets.PYPI_TOKEN }}
        with:
          skip-existing: true

Allowed Inputs

Parameter Description Default
user PyPi username. __token__
token PyPi token. [Mandatory] NA
test-upload Uploads to TestPyPi repository. false
dry-run Builds the distribution without uploading to PyPi. false
repository-url PyPi repository URL. upload.pypi.org**
packages-dir The target directory for distribution. dist
verify-metadata Check metadata before uploading. true
skip-existing Avoids failing if distribution exists in package index. true
verbose Runs in verbose mode. false
print-hash Show hash values of distribution files. true
setup-python Uses the GH action setup-python. false**
python-version Python version for setup-python. 3.9

Notes

  • repository-url defaults to upload.pypi.org, but it can change dynamically based on the test-upload flag.
  • setup-python defaults to false, but it can change dynamically based on whether python is installed in the runner.
  • python-version will be used only when setup-python flag is set to true, otherwise the default python in the runner takes precedence.

Only user and token can be passed as env whilst, rest of the parameters should be passed using with

License & copyright

© Vignesh Rao

Licensed under the MIT License