We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 391f9a5 commit 1fd901dCopy full SHA for 1fd901d
2 files changed
.github/workflows/semantic-release.yml
@@ -3,7 +3,8 @@ name: Semantic Release
3
on:
4
push:
5
branches:
6
- - master
+ - main
7
+ - next
8
9
jobs:
10
release:
pyproject.toml
@@ -32,10 +32,14 @@ allow_zero_version = true
32
tag_format = "v{version}"
33
34
[tool.semantic_release.branches.main]
35
-match = "(next|master)"
36
-prerelease_token = "rc"
+match = "main"
37
prerelease = false
38
+[tool.semantic_release.branches.next]
39
+match = "next"
40
+prerelease_token = "next"
41
+prerelease = true
42
+
43
[tool.semantic_release.changelog]
44
template_dir = "templates"
45
changelog_file = "CHANGELOG.md"
@@ -74,4 +78,3 @@ insecure = false
74
78
[tool.semantic_release.publish]
75
79
dist_glob_patterns = ["dist/*"]
76
80
upload_to_vcs_release = true
77
-
0 commit comments