Skip to content

Commit 5d9fce9

Browse files
committed
fix: update release workflow tag pattern to match release-plz format
- Change pattern from '**[0-9]+.[0-9]+.[0-9]+*' to '**v[0-9]+.[0-9]+.[0-9]+*' - This matches tags like redisctl-v0.1.1 created by release-plz - Fixes missing binary artifacts on releases
1 parent 41bd1a7 commit 5d9fce9

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ on:
4242
pull_request:
4343
push:
4444
tags:
45-
- '**[0-9]+.[0-9]+.[0-9]+*'
45+
# Matches tags like: v1.0.0, redisctl-v0.1.1, redis-cloud-v0.2.0, etc.
46+
- '**v[0-9]+.[0-9]+.[0-9]+*'
4647

4748
jobs:
4849
# Run 'dist plan' (or host) to determine what tasks we need to do

0 commit comments

Comments
 (0)