Skip to content

Commit 707631c

Browse files
committed
fix: update cargo-dist tag pattern to match redisctl-v* format
The release-plz workflow creates tags in the format redisctl-v0.6.3, but cargo-dist was configured to match **[0-9]+.[0-9]+.[0-9]+* which doesn't match tags with the redisctl-v prefix. Update the tag pattern to redisctl-v[0-9]+.[0-9]+.[0-9]+* to properly trigger binary builds when release-plz creates a tag.
1 parent c54c327 commit 707631c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ on:
4242
pull_request:
4343
push:
4444
tags:
45-
- "**[0-9]+.[0-9]+.[0-9]+*"
45+
- "redisctl-v[0-9]+.[0-9]+.[0-9]+*"
4646

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

0 commit comments

Comments
 (0)