Skip to content

Commit

Permalink
docs(CONTRIBUTING.md): add deployment instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
xaviml committed May 30, 2020
1 parent 2bc3a4a commit 628965b
Showing 1 changed file with 18 additions and 1 deletion.
19 changes: 18 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,24 @@ bundle exec jekyll serve
## Pull request

Feel free to open a PR on GitHub. When submitting the PR several points will be checked:

- Testing (with pytest)
- Linting (with flake8)
- Typing (with mypy)
- Formatting (with black)
- Formatting (with black)

## Deployment

Thanks to the Azure Pipelines, we are able to deploy by just creating a new tag on git. So first, we will need to bump version with `commitizen` by running the following line in the `master` branch:

```
cz bump --no-verify
```

Then, we can directly push the tags:

```
git push origin master --tags
```

This will automatically generate a GitHub release with the changes for that release.

0 comments on commit 628965b

Please sign in to comment.