File tree Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Expand file tree Collapse file tree 3 files changed +17
-1
lines changed Original file line number Diff line number Diff line change 3232 env :
3333 POETRY_PYPI_TOKEN_PYPI : ${{ secrets.PYPI_TOKEN }}
3434 run : poetry publish --username __token__ --password $POETRY_PYPI_TOKEN_PYPI
35+
36+ environment :
37+ name : Production
38+ url : https://pypi.org/project/api-to-dataframe/
Original file line number Diff line number Diff line change 7070 git push
7171 git tag -f $(poetry version -s)
7272 git push -f origin --tags
73+
74+ - name : Build package
75+ run : poetry build
76+
77+ - name : Publish package to TestPyPI
78+ env :
79+ POETRY_PYPI_TOKEN_PYPI : ${{ secrets.TEST_PYPI_TOKEN }}
80+ run : poetry publish -r test-pypi -u __token__ --password $POETRY_PYPI_TOKEN_PYPI
81+
82+ environment :
83+ name : Development
84+ url : https://test.pypi.org/project/api-to-dataframe/
Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " api-to-dataframe"
3- version = " 1.3.3 "
3+ version = " 1.3.4 "
44description = " A package to convert API responses to pandas dataframe"
55authors = [" IvanildoBarauna <ivanildo.jnr@outlook.com>" ]
66readme = " README.md"
You can’t perform that action at this time.
0 commit comments