File tree 2 files changed +14
-9
lines changed
2 files changed +14
-9
lines changed Original file line number Diff line number Diff line change 26
26
with :
27
27
app_id : ${{ vars.RELEASER_APP_ID }}
28
28
private_key : ${{ secrets.RELEASER_APP_PRIVATE_KEY }}
29
-
30
- - id : commit
31
- uses : stefanzweifel/git-auto-commit-action@v4
32
- with :
33
- commit_message : " build: update dist files"
34
- - run : npm i semantic-release-plugin-github-breaking-version-tag
29
+ - run : npm install --no-save @semantic-release/git semantic-release-plugin-github-breaking-version-tag
35
30
- run : npx semantic-release
36
31
env :
37
32
GITHUB_TOKEN : ${{ steps.app-token.outputs.token }}
Original file line number Diff line number Diff line change 1
1
{
2
- "name" : " app-token-action " ,
2
+ "name" : " create-github- app-token" ,
3
3
"private" : true ,
4
4
"type" : " module" ,
5
- "version" : " 1.0.0 " ,
5
+ "version" : " 1.0.5 " ,
6
6
"description" : " GitHub Action for creating a GitHub App Installation Access Token" ,
7
7
"scripts" : {
8
8
"build" : " esbuild main.js post.js --bundle --outdir=dist --out-extension:.js=.cjs --platform=node --target=node16.16" ,
27
27
" @semantic-release/commit-analyzer" ,
28
28
" @semantic-release/release-notes-generator" ,
29
29
" @semantic-release/github" ,
30
- " semantic-release-plugin-github-breaking-version-tag"
30
+ " semantic-release-plugin-github-breaking-version-tag" ,
31
+ [
32
+ " @semantic-release/git" ,
33
+ {
34
+ "assets" : [
35
+ " package.json" ,
36
+ " dist/*"
37
+ ],
38
+ "message" : " build(release): ${nextRelease.version} [skip ci]\n\n ${nextRelease.notes}"
39
+ }
40
+ ]
31
41
]
32
42
}
33
43
}
You can’t perform that action at this time.
0 commit comments