File tree Expand file tree Collapse file tree 5 files changed +2608
-58
lines changed Expand file tree Collapse file tree 5 files changed +2608
-58
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ jobs :
9
+ release :
10
+ name : Release
11
+ runs-on : ubuntu-latest
12
+ steps :
13
+ - uses : actions/checkout@v3
14
+ - uses : ./.github/actions/prepare
15
+ - name : Release
16
+ env :
17
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
18
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
19
+ run : npx semantic-release
Original file line number Diff line number Diff line change
1
+ {
2
+ "plugins" : [
3
+ " @semantic-release/commit-analyzer" ,
4
+ " @semantic-release/release-notes-generator" ,
5
+ " @semantic-release/github" ,
6
+ " @semantic-release/npm" ,
7
+ [
8
+ " @semantic-release/git" ,
9
+ {
10
+ "assets" : [
11
+ " docs" ,
12
+ " lib" ,
13
+ " package.json" ,
14
+ " README.md" ,
15
+ " src" ,
16
+ " !src/**/*.test.*"
17
+ ],
18
+ "message" : " chore(release): ${nextRelease.version}\n\n ${nextRelease.notes}"
19
+ }
20
+ ]
21
+ ]
22
+ }
Original file line number Diff line number Diff line change 2
2
"author" :
" Josh Goldberg <[email protected] >" ,
3
3
"description" : " TODO: description!" ,
4
4
"devDependencies" : {
5
+ "@semantic-release/commit-analyzer" : " ^9.0.2" ,
6
+ "@semantic-release/git" : " ^10.0.1" ,
7
+ "@semantic-release/github" : " ^8.0.6" ,
8
+ "@semantic-release/npm" : " ^9.0.1" ,
9
+ "@semantic-release/release-notes-generator" : " ^10.0.3" ,
5
10
"@typescript-eslint/eslint-plugin" : " ^5.38.1" ,
6
11
"@typescript-eslint/parser" : " ^5.38.1" ,
7
12
"cspell" : " ^6.12.0" ,
11
16
"lint-staged" : " >=10" ,
12
17
"markdownlint-cli" : " ^0.32.2" ,
13
18
"prettier" : " ^2.7.1" ,
19
+ "semantic-release" : " ^19.0.5" ,
14
20
"typescript" : " ^4.8.4" ,
15
21
"vitest" : " ^0.23.4"
16
22
},
You can’t perform that action at this time.
0 commit comments