diff options
| author | Jay Kwak <82421531+jkwak-work@users.noreply.github.com> | 2025-08-01 10:12:38 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-01 17:12:38 +0000 |
| commit | a660640d41eba1392c2fbc16ab9ff3661f82b0f9 (patch) | |
| tree | 0118f8786651074b95fb56bdc6a831a6f9c0dfc2 /.github | |
| parent | 374026df12021ce2f90cbd86d6e7ec6a181f6038 (diff) | |
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.
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/release-linux-glibc-2-27.yml | 2 | ||||
| -rw-r--r-- | .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: |
