File tree Expand file tree Collapse file tree 3 files changed +44
-0
lines changed
Expand file tree Collapse file tree 3 files changed +44
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Run release action
2+ on :
3+ push :
4+ branches :
5+ - main
6+ - stable
7+
8+ jobs :
9+ autorelease :
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/create-github-app-token@v2
13+ id : app-token
14+ with :
15+ app-id : ${{ vars.APP_ID }}
16+ private-key : ${{ secrets.PRIVATE_KEY }}
17+ - uses : googleapis/release-please-action@v4
18+ with :
19+ token : ${{ steps.app-token.outputs.token }}
20+ config-file : release-please-config.json
21+ target-branch : stable
Original file line number Diff line number Diff line change 1+ {
2+ "." : " 0.3.2"
3+ }
Original file line number Diff line number Diff line change 1+ {
2+ "release-type" : " python" ,
3+ "changelog-path" : " CHANGELOG.md" ,
4+ "default-branch" : " main" ,
5+ "branches" : [
6+ {
7+ "name" : " stable" ,
8+ "release-type" : " python" ,
9+ "draft" : true ,
10+ "prerelease" : false ,
11+ "changelog-path" : " CHANGELOG.md"
12+ }
13+ ],
14+ "include-component-in-tag" : false ,
15+ "bump-minor-pre-major" : true ,
16+ "bump-patch-for-minor-pre-major" : true ,
17+ "packages" : {
18+ "." : {}
19+ }
20+ }
You can’t perform that action at this time.
0 commit comments