Skip to content

Commit b7d7a83

Browse files
committed
ci(pipeline): update version tagging format
- Changes the tagging format in the pipeline workflow to remove the 'version/' prefix from the tag name. - Updates the GitVersion configuration to reflect a new tag prefix format that omits 'version/'. - This simplification enhances consistency in tagging releases.
1 parent 7e0f236 commit b7d7a83

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/pipeline.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ jobs:
226226
with:
227227
repository: ${{ github.repository }}
228228
name: v${{ env.gitVersion_SemVer }}
229-
tag_name: version/v${{ env.gitVersion_SemVer }}
229+
tag_name: v${{ env.gitVersion_SemVer }}
230230
body: The release process is automated.
231231
generate_release_notes: true
232232
token: ${{ secrets.ES_GITHUB_PAT }}

GitVersion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
assembly-versioning-scheme: MajorMinorPatch
22
assembly-file-versioning-scheme: MajorMinorPatch
33
mode: ContinuousDelivery
4-
tag-prefix: 'version/[vV]'
4+
tag-prefix: '[vV]'
55
continuous-delivery-fallback-tag: ci
66
major-version-bump-message: '\+semver:\s?(breaking|major)'
77
minor-version-bump-message: '\+semver:\s?(feature|minor)'

0 commit comments

Comments
 (0)