From a660640d41eba1392c2fbc16ab9ff3661f82b0f9 Mon Sep 17 00:00:00 2001 From: Jay Kwak <82421531+jkwak-work@users.noreply.github.com> Date: Fri, 1 Aug 2025 10:12:38 -0700 Subject: Restrict the release tag name to a pattern the build script expects (#8027) Previously there were tag name `vulkan` and it was causing build errors. The cmake build script currently expect the name to be in a pattern of `v2025.1` which starts with `v` and followed by numbers. --- .github/workflows/release-linux-glibc-2-27.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-linux-glibc-2-27.yml b/.github/workflows/release-linux-glibc-2-27.yml index d371cba3e..96febf236 100644 --- a/.github/workflows/release-linux-glibc-2-27.yml +++ b/.github/workflows/release-linux-glibc-2-27.yml @@ -2,7 +2,7 @@ on: workflow_dispatch: push: tags: - - "v*" + - "v20[2-9][0-9].[0-9]*" name: ubuntu18-gcc11 Release jobs: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2981708b5..a3c8953fb 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,7 +6,7 @@ on: # We are not caching the builds so we don't want to run the release workflow for every push to master; # The release workflow is only triggered by tags or manual dispatch tags: - - "v*" + - "v20[2-9][0-9].[0-9]*" jobs: release: strategy: -- cgit v1.2.3