From c3c6f2ad9b8a577e53975fecb3ba5f2f6975dd07 Mon Sep 17 00:00:00 2001 From: Michael Bolin Date: Tue, 29 Apr 2025 19:38:26 -0700 Subject: [PATCH] fix: remove expected dot after v in rust-v tag name --- .github/workflows/rust-release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/rust-release.yml b/.github/workflows/rust-release.yml index 00e2dcb15b..d4f8cd0b75 100644 --- a/.github/workflows/rust-release.yml +++ b/.github/workflows/rust-release.yml @@ -9,14 +9,14 @@ name: rust-release on: push: tags: - - "rust-v.*.*.*" + - "rust-v*.*.*" concurrency: group: ${{ github.workflow }} cancel-in-progress: true env: - TAG_REGEX: '^rust-v\.[0-9]+\.[0-9]+\.[0-9]+$' + TAG_REGEX: '^rust-v[0-9]+\.[0-9]+\.[0-9]+$' jobs: tag-check: