Commit 06270e3 Adam Tworkiewicz
committed
1 parent 25d7ca4 commit 06270e3 Copy full SHA for 06270e3
File tree 1 file changed +21
-0
lines changed
1 file changed +21
-0
lines changed Original file line number Diff line number Diff line change
1
+ # Release process
2
+
3
+ ## Git
4
+ 1 . Make sure you are on ` main ` branch:
5
+ ```
6
+ git checkout main
7
+ ```
8
+ 1. Verify, that `CHANGELOG.md` contains all the changes for the release.
9
+ 1. Create a tag and push to origin:
10
+ ```
11
+ git tag v0.0.1
12
+ git push origin --tags
13
+ ```
14
+
15
+ ## GitHub
16
+
17
+ 1. Click the [Create a new release](https://github.com/Teradata/dbt-teradata-utils/releases/new) link on the project homepage in GitHub
18
+ 1. Type `v{semantic_version}` as the "tag version" (e.g., `v0.0.1`)
19
+ 1. Leave the "target" as `main`
20
+ 1. Type `dbt-teradata-utils {semantic_version}` as the "release title" (e.g. `dbt-teradata-utils 0.0.1`)
21
+ 1. Click the "publish release" button
You can’t perform that action at this time.
0 commit comments