Skip to content

Commit

Permalink
Merge pull request #62 from openedx/publish-pypi
Browse files Browse the repository at this point in the history
build: Adding functionality for publishing on pypi
  • Loading branch information
awais786 authored Nov 25, 2022
2 parents 6eeb46d + 4e49dc0 commit ab1c26f
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 1 deletion.
30 changes: 30 additions & 0 deletions .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Publish package to PyPI

on:
push:
tags:
- '*'

jobs:
push:
runs-on: ubuntu-20.04

steps:
- name: Checkout
uses: actions/checkout@v3
- name: setup python
uses: actions/setup-python@v3
with:
python-version: 3.8

- name: Install pip
run: pip install -r requirements/pip.txt

- name: Build package
run: python setup.py sdist bdist_wheel

- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@master
with:
user: __token__
password: ${{ secrets.PYPI_UPLOAD_TOKEN }}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ def is_requirement(line):

setup(
name='concept-xblock',
version='0.1',
version='0.2.0',
description='concept XBlock', # TODO: write a better description.
packages=[
'concept',
Expand Down

0 comments on commit ab1c26f

Please sign in to comment.