Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Remove quotes from tag_prefix in semantic versioning configuration
  • Loading branch information
sarbagyastha committed Apr 22, 2025
commit 4b29fa6f8a791ebf7b9af08b01460f12356b55ab
3 changes: 2 additions & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,13 @@ jobs:
uses: paulhatch/[email protected]
id: versioning
with:
tag_prefix: "v"
tag_prefix: v
major_pattern: "(MAJOR)"
minor_pattern: "(MINOR)"
version_format: "${major}.${minor}.${patch}-rc"
bump_each_commit: false
search_commit_body: true
namespace: rc

- name: Bump version and push tag
id: tag_version
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: paulhatch/[email protected]
id: versioning
with:
tag_prefix: "v"
tag_prefix: v
major_pattern: "(MAJOR)"
minor_pattern: "(MINOR)"
version_format: "${major}.${minor}.${patch}"
Expand Down