Skip to content

Commit dbd5acf

Browse files
authored
fix: Docs release workflow (#4533)
Apparently the regex syntax `\d` may or maybe not supported. I have replaced it with a standardized `[0-9]` instead
1 parent f06e579 commit dbd5acf

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/publish-technical-documentation-release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
fetch-depth: 0
2626
- uses: grafana/writers-toolkit/publish-technical-documentation-release@d5577de696f0eb69ff65816795c816d6a84951fe
2727
with:
28-
release_tag_regexp: "^v(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)$"
29-
release_branch_regexp: "^release/v(0|[1-9]\\d*)\\.(0|[1-9]\\d*)$"
30-
release_branch_with_patch_regexp: "^release/v(0|[1-9]\\d*)\\.(0|[1-9]\\d*)\\.(0|[1-9]\\d*)$"
28+
release_tag_regexp: "^v(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)$"
29+
release_branch_regexp: "^release/v(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)$"
30+
release_branch_with_patch_regexp: "^release/v(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)\\.(0|[1-9][0-9]*)$"
3131
website_directory: content/docs/pyroscope

0 commit comments

Comments
 (0)