Skip to content

Commit 5737eb7

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

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@b51e92f99d145614bf6763c7c4f1920a03124693
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)