Skip to content
Merged

Sync #12

Show file tree
Hide file tree
Changes from all commits
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
Testing 30 (#11)
* Remove quotes from tag_prefix in semantic versioning configuration

* Remove unused namespace from semantic versioning and ensure prerelease flag is set for production release

---------

Co-authored-by: Sarbagya Dhaubanjar <[email protected]>
  • Loading branch information
sarbagya-acme and sarbagyastha authored Apr 22, 2025
commit e49a31c719ad913843c9efac5a107b435fbad43e
3 changes: 2 additions & 1 deletion .github/workflows/dev.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}-rc"
Expand Down Expand Up @@ -58,3 +58,4 @@ jobs:
name: ${{ steps.versioning.outputs.version_tag }}
body: ${{ steps.changelog.outputs.changelog }}
commit: ${{ steps.versioning.outputs.current_commit }}
prerelease: true
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