-
Notifications
You must be signed in to change notification settings - Fork 2
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
build: release on pypi through github actions #12
base: master
Are you sure you want to change the base?
Conversation
uses: pypa/gh-action-pypi-publish@master | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_UPLOAD_TOKEN }} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
file should end with a new line
*.egg-info | ||
dist | ||
build | ||
eggs |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
same here
@@ -68,7 +66,7 @@ def is_requirement(line): | |||
license='AGPL', | |||
url='https://github.com/edx/pytest-warnings-report', | |||
description='A pytest plugin for generating warnings reports.', | |||
long_description=read('README.rst'), | |||
long_description=README, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
have you tested the output? why do we need to remove read
here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
because it is already read and stored in README variable https://github.com/edx/pytest-warnings-report/blob/9981d9bd484abdb6feca72d2db68abd007b738d1/setup.py#L55
JIRA: https://openedx.atlassian.net/browse/BOM-2156