-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Adam Tworkiewicz
committed
Feb 4, 2022
1 parent
25d7ca4
commit 06270e3
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |