File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ name: Release
22
33on :
44 push :
5- branches : [ alpha ]
5+ branches : [ alpha, beta ]
66
77jobs :
88 release :
1313 name : Release with Node version ${{ matrix.node }}
1414 steps :
1515 - name : Checkout CLI
16- uses : actions/checkout@v2
16+ uses : actions/checkout@v4
1717 with :
1818 repository : apimatic/apimatic-cli
1919 token : ${{ secrets.GITHUB_TOKEN }}
2222 path : cli
2323
2424 - name : setup node
25- uses : actions/setup-node@v2
25+ uses : actions/setup-node@v4
2626
2727 - name : Install dependencies
2828 working-directory : cli
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ The official CLI for APIMatic.
1414To get started with APIMatic's CLI using a step by step wizard, run the following command:
1515
1616``` sh-session
17- $ apimatic portal: quickstart
17+ $ apimatic portal quickstart
1818```
1919
2020# Usage
Original file line number Diff line number Diff line change 11// eslint-disable-next-line no-undef
22module . exports = {
33 branches : [
4- "v3" ,
54 {
65 name : "alpha" ,
76 prerelease : true
7+ } ,
8+ {
9+ name : "beta" ,
10+ prerelease : true
811 }
912 ] ,
1013 plugins : [
@@ -21,8 +24,9 @@ module.exports = {
2124 [
2225 "@semantic-release/git" ,
2326 {
24- assets : [ "CHANGELOG.md" , "dist/**" ] ,
25- message : "chore(release): set `package.json` to ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
27+ assets : [ "CHANGELOG.md" , "package.json" ] ,
28+ message :
29+ "chore(release): set `package.json` to ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
2630 }
2731 ]
2832 ]
You can’t perform that action at this time.
0 commit comments