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 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to '.github/workflows/release-linux-glibc-2-27.yml') 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: -- cgit v1.2.3