File tree Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Expand file tree Collapse file tree 2 files changed +24
-2
lines changed Original file line number Diff line number Diff line change 77 - next
88
99jobs :
10+ build :
11+ name : Build distribution 📦
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v4
16+ - name : Set up Python
17+ uses : actions/setup-python@v4
18+ with :
19+ python-version : " 3.x"
20+ - name : Install pypa/build
21+ run : >-
22+ python3 -m
23+ pip install
24+ build
25+ --user
26+ - name : Build a binary wheel and a source tarball
27+ run : python3 -m build
28+ - name : Test the package before release
29+ run : make test
1030 release :
1131 runs-on : ubuntu-latest
1232 concurrency : release
1333 permissions :
1434 id-token : write
1535 contents : write
36+ needs :
37+ - build
1638 steps :
1739 - uses : actions/checkout@v3
1840 with :
Original file line number Diff line number Diff line change @@ -24,12 +24,12 @@ Issues = "https://github.com/jonaslagoni/asyncapi-python-parser/issues"
2424
2525[tool .semantic_release ]
2626assets = []
27- commit_message = " {version}\n\n Automatically generated by python-semantic-release"
27+ commit_message = " chore(release): v {version}\n\n Automatically generated by python-semantic-release"
2828commit_parser = " angular"
2929logging_use_named_masks = false
3030major_on_zero = true
3131allow_zero_version = true
32- tag_format = " chore: release v{version}"
32+ tag_format = " v{version}"
3333version_variable = [
3434 " pyproject.toml:version" ,
3535]
You can’t perform that action at this time.
0 commit comments