Skip to content

Commit

Permalink
Add process for releasing using GitHub actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dkarchmer authored May 16, 2022
1 parent af42d4c commit bf2a593
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,19 @@ You can also use py.test:
py.test
```

## Deployment
## CI Deployment

1. Update `setup.py` with new version
2. Create new tag with same version

```
git tag v0.4.1 -m "v0.4.1"
git push --tags
```

3. Create new release using GitHub Web Site. Github action will run automatically to deploy to PyPi.

## Manual Deployment

```bash
pip install -r requirements-build.txt
Expand Down

0 comments on commit bf2a593

Please sign in to comment.