Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: fix pypi publish workflow build #126

Merged
merged 5 commits into from
Jan 25, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/pypi-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: python setup.py sdist bdist_wheel

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

setup(
name='concept-xblock',
version='0.3.0',
version='0.3.2',
description='concept XBlock', # TODO: write a better description.
long_description='This is a simple XBlock which will allows one to tag problems with concepts.',
UsamaSadiq marked this conversation as resolved.
Show resolved Hide resolved
long_description_content_type='text/x-rst',
UsamaSadiq marked this conversation as resolved.
Show resolved Hide resolved
packages=[
'concept',
],
Expand Down