Skip to content

Commit

Permalink
Add RELEASE_INSTRUCTIONS for Poetry.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeffrey Wright committed Feb 26, 2023
1 parent fc4de3a commit 64bbcef
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions misc/RELEASE_INSTRUCTIONS.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
## One time setup ( per host/environment) ##
### PYPI Test ###
- add repository to poetry config: `poetry config repositories.audio-program-generator https://test.pypi.org/legacy/`
- get token from https://test.pypi.org/manage/account/token/
- store token using poetry config pypi-token.test-pypi pypi-YYYYYYYY
### PYPI Production ###
- get token from https://pypi.org/manage/account/token/
- store token using poetry config pypi-token.pypi pypi-XXXXXXXX

## Each time you need to publish ##
### Bump version ###
- poetry version prerelease or
- poetry version patch

## Poetry Publish ##
### To TestPyPi ###
- poetry publish -r test-pypi
### To PyPi ###
- poetry publish

0 comments on commit 64bbcef

Please sign in to comment.