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

update CONTRIBUTOR.md based on new publishing method #20

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all 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
9 changes: 7 additions & 2 deletions CONTRIBUTOR.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,13 @@ To exactly replicate the CI steps, add the `-f docker-compose.ci.yml` arg to the

To cut a new version, follow these steps:

- create and merge final feature branch updating `CHANGELOG.md`
- tag final commit hash with `git tag <VERSION>`, e.g. `git tag 0.1.3`.
(the first time you do this)
- get `maintainer` access to the `wayscript` project on pypi
- create an API key for the project (save for future use)
(all times)
- run `export TWINE_PASSWORD="<your api key>"` in terminal to set up environment variable
- tag final commit hash with `git tag <VERSION>`, e.g. `git tag 0.3.1`.
- in `publish.sh`, update `VERSION="<your version tag>"`
- publish to pypi with:
```
docker-compose run --rm app bash publish.sh
Expand Down