fix: remove expected dot after v in rust-v tag name

This commit is contained in:
Michael Bolin
2025-04-29 19:38:26 -07:00
parent 85999d7277
commit c3c6f2ad9b

View File

@@ -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: