File tree Expand file tree Collapse file tree 3 files changed +24
-27
lines changed Expand file tree Collapse file tree 3 files changed +24
-27
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches : [ $default-branch ]
6
+
7
+ jobs :
8
+ build :
9
+ runs-on : ubuntu-latest
10
+
11
+ steps :
12
+ - uses : actions/checkout@v3
13
+ - uses : actions/setup-node@v3
14
+ with :
15
+ node-version : 20
16
+ cache : ' npm'
17
+ - run : npm ci
18
+ - run : npm run format:check --if-present
19
+ - run : npm run semantic-release
20
+ env :
21
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
22
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change 66
66
[
67
67
" @semantic-release/changelog" ,
68
68
{
69
- "changelogFile" : " docs/changelog/README .md"
69
+ "changelogFile" : " docs/changelog/index .md"
70
70
}
71
71
],
72
72
[
73
73
" @semantic-release/git" ,
74
74
{
75
75
"assets" : [
76
- " docs/changelog/README .md"
76
+ " docs/changelog/index .md"
77
77
],
78
78
"message" : " chore(changelog): ${nextRelease.version} [ci skip]"
79
79
}
You can’t perform that action at this time.
0 commit comments