Skip to content

Light weight, OS agnostic GitHub action to run PyPi publish

License

Notifications You must be signed in to change notification settings

thevickypedia/pypi-publisher

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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