Skip to content

Commit

Permalink
added release instructions
Browse files Browse the repository at this point in the history
  • Loading branch information
Adam Tworkiewicz committed Feb 4, 2022
1 parent 25d7ca4 commit 06270e3
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions RELEASE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
# Release process

## Git
1. Make sure you are on `main` branch:
```
git checkout main
```
1. Verify, that `CHANGELOG.md` contains all the changes for the release.
1. Create a tag and push to origin:
```
git tag v0.0.1
git push origin --tags
```
## GitHub
1. Click the [Create a new release](https://github.com/Teradata/dbt-teradata-utils/releases/new) link on the project homepage in GitHub
1. Type `v{semantic_version}` as the "tag version" (e.g., `v0.0.1`)
1. Leave the "target" as `main`
1. Type `dbt-teradata-utils {semantic_version}` as the "release title" (e.g. `dbt-teradata-utils 0.0.1`)
1. Click the "publish release" button

0 comments on commit 06270e3

Please sign in to comment.