Skip to content

Commit

Permalink
Merge pull request #58 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 24, 2022
2 parents 6373969 + 6a984e6 commit 572b906
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 @@ -93,7 +93,7 @@ def is_requirement(line):

setup(
name='xblock-sql-grader',
version='0.3.0',
version='0.3.1',
description='SQL Grader XBlock', # TODO: write a better description.
license='AGPLv3',
packages=find_packages(exclude=('sql_grader.tests')),
Expand Down

0 comments on commit 572b906

Please sign in to comment.