From e49a31c719ad913843c9efac5a107b435fbad43e Mon Sep 17 00:00:00 2001 From: Sarbagya Dhaubanjar <72559674+sarbagya-acme@users.noreply.github.com> Date: Tue, 22 Apr 2025 23:29:51 +0545 Subject: [PATCH] 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 --- .github/workflows/dev.yml | 3 ++- .github/workflows/main.yml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev.yml b/.github/workflows/dev.yml index e896704..10339d1 100644 --- a/.github/workflows/dev.yml +++ b/.github/workflows/dev.yml @@ -27,7 +27,7 @@ jobs: uses: paulhatch/semantic-version@v5.4.0 id: versioning with: - tag_prefix: "v" + tag_prefix: v major_pattern: "(MAJOR)" minor_pattern: "(MINOR)" version_format: "${major}.${minor}.${patch}-rc" @@ -58,3 +58,4 @@ jobs: name: ${{ steps.versioning.outputs.version_tag }} body: ${{ steps.changelog.outputs.changelog }} commit: ${{ steps.versioning.outputs.current_commit }} + prerelease: true diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index cefd8ec..4bd7800 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,7 @@ jobs: uses: paulhatch/semantic-version@v5.4.0 id: versioning with: - tag_prefix: "v" + tag_prefix: v major_pattern: "(MAJOR)" minor_pattern: "(MINOR)" version_format: "${major}.${minor}.${patch}"