File tree Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Expand file tree Collapse file tree 1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -44,18 +44,26 @@ the `semantic-convention` release version, e.g. `v1.21.0.1`
4444 * ` export GPG_PASSWORD=<password> `
4545 * ` export SONATYPE_USER=<user> `
4646 * ` export SONATYPE_KEY=<key> `
47+ * Set ` snapshot = false ` in [ build.gradle.kts] ( ./build.gradle.kts ) :
48+
49+ ```
50+ // start - updated by ./.github/workflows/prepare-release-branch.yml
51+ val snapshot = false // <-- UPDATE THIS LINE
52+ // end
53+ ```
54+
4755* Adjust version tag to include ` -rc.<num> ` suffix (i.e. ` -rc.1 ` for the first release candidate) in [ build.gradle.kts] ( ./build.gradle.kts ) :
4856
4957 ```
5058 var ver = semanticConventionsVersion
51- ver += "-rc.1" // <-- ADD THIS LINE
5259 val release = findProperty("otel.release")
5360 if (release != null) {
5461 ver += "-" + release
5562 }
5663 if (snapshot) {
5764 ver += "-SNAPSHOT"
5865 }
66+ ver += "-rc.1" // <-- ADD THIS LINE
5967 version = ver
6068 ```
6169
You can’t perform that action at this time.
0 commit comments