File tree Expand file tree Collapse file tree 2 files changed +45
-0
lines changed Expand file tree Collapse file tree 2 files changed +45
-0
lines changed Original file line number Diff line number Diff line change
1
+ name : ' Release'
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ defaults :
9
+ run :
10
+ shell : bash
11
+
12
+ jobs :
13
+ release :
14
+ name : Release
15
+ runs-on : ubuntu-latest
16
+ steps :
17
+ - name : Checkout
18
+ uses : actions/checkout@v2
19
+ with :
20
+ persist-credentials : false
21
+ fetch-depth : 0
22
+
23
+ - name : Release
24
+ uses : cycjimmy/semantic-release-action@v2
25
+ with :
26
+ semantic_version : 18.0.0
27
+ extra_plugins : |
28
+ @semantic-release/changelog@6.0.0
29
+ @semantic-release/git@10.0.0
30
+ conventional-changelog-conventionalcommits@4.6.3
31
+ env :
32
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change
1
+ {
2
+ "branches" : [
3
+ " main"
4
+ ],
5
+ "debug" : false ,
6
+ "ci" : true ,
7
+ "dryRun" : false ,
8
+ "plugins" : [
9
+ " @semantic-release/commit-analyzer" ,
10
+ " @semantic-release/release-notes-generator" ,
11
+ " @semantic-release/github"
12
+ ]
13
+ }
You can’t perform that action at this time.
0 commit comments