Skip to content

Commit

Permalink
Add functionality to upload python package to Pypi (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
devakodali committed Nov 17, 2020
1 parent 26f6467 commit bfb89cb
Show file tree
Hide file tree
Showing 2 changed files with 57 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# This workflows will upload a Python Package using Twine when a release is created
# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries

name: Upload Python Package

on:
release:
types: [created]

jobs:
deploy:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Prepare version
run: |
# get release version
VERSION=$(echo $GITHUB_REF | sed 's#.*/v##')
# file and content that will be replaced
PLACEHOLDER="version='default'"
SETUP_FILE="setup.py"
# check to see that content is in file, then replace to have latest release version
grep "${PLACEHOLDER}" "${SETUP_FILE}"
sed -i "s/$PLACEHOLDER/version='${VERSION}'/g" ${SETUP_FILE}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel twine
- name: Build and publish
env:
TWINE_USERNAME: ${{ secrets.PYPI_USERNAME }}
TWINE_PASSWORD: ${{ secrets.PYPI_PASSWORD }}
run: |
python setup.py sdist bdist_wheel
twine upload dist/*
14 changes: 14 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
from setuptools import setup, find_packages

setup(
name='PyGithubFork',
version='default',
description='Code wraps PyGithub to simplify workflows dealing with forks',
author='hassenius',
url='https://github.com/multicloud-ops/PyGithubFork',
packages=['githubfork']
# install_requires=[
# 'pyyaml',
# 'pygithub'
# ]
)

0 comments on commit bfb89cb

Please sign in to comment.