From 2a01013201c4d095048d7b92cc3964661abda05b Mon Sep 17 00:00:00 2001 From: Varsha GS Date: Mon, 11 Aug 2025 12:08:42 +0530 Subject: [PATCH] Release new version only on `3.x` tags that does not contain the string `post` - Do not release new version for fedramp specific code - Remove redundant check for v3 tags Signed-off-by: Varsha GS --- .github/workflows/pkg_release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pkg_release.yml b/.github/workflows/pkg_release.yml index 7e8a91e7..046dbf61 100644 --- a/.github/workflows/pkg_release.yml +++ b/.github/workflows/pkg_release.yml @@ -11,13 +11,13 @@ name: Release new version on: push: tags: - - v3.* + - 'v3.*' + - '!v3.*post*' jobs: build: name: Build package runs-on: ubuntu-latest - if: ${{ startsWith(github.ref_name, 'v3') }} steps: - uses: actions/checkout@v4 - name: Set up Python