File tree Expand file tree Collapse file tree 2 files changed +31
-0
lines changed
Expand file tree Collapse file tree 2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change 1+ name : release
2+
3+ on :
4+ workflow_dispatch :
5+ push :
6+
7+ jobs :
8+ release :
9+ runs-on : ubuntu-22.04
10+ permissions :
11+ contents : write # for creating the gh release
12+ issues : write # for commenting on related issues
13+ pull-requests : write # for commenting on related pull-requests
14+
15+ steps :
16+ - uses : actions/checkout@v2
17+ with :
18+ fetch-depth : 0 # semantic release needs all the history
19+ - uses : actions/setup-node@v2
20+ - name : Release
21+ env :
22+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
23+ run : npx semantic-release@19
Original file line number Diff line number Diff line change 1+ {
2+ "branches" : [" main" ],
3+ "plugins" : [
4+ " @semantic-release/commit-analyzer" ,
5+ " @semantic-release/release-notes-generator" ,
6+ " @semantic-release/github"
7+ ]
8+ }
You can’t perform that action at this time.
0 commit comments