File tree Expand file tree Collapse file tree 4 files changed +20755
-11533
lines changed
Expand file tree Collapse file tree 4 files changed +20755
-11533
lines changed Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+ - beta
8+
9+ permissions :
10+ contents : read # for checkout
11+
12+ jobs :
13+ release :
14+ name : Release
15+ runs-on : ubuntu-latest
16+ permissions :
17+ contents : write # to be able to publish a GitHub release
18+ issues : write # to be able to comment on released issues
19+ pull-requests : write # to be able to comment on released pull requests
20+ steps :
21+ - name : Checkout
22+ uses : actions/checkout@v3
23+ with :
24+ fetch-depth : 0
25+ - name : Setup Node.js
26+ uses : actions/setup-node@v3
27+ with :
28+ node-version : " lts/*"
29+ - name : Install dependencies
30+ run : npm install
31+ - name : Release
32+ env :
33+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
34+ run : npx semantic-release
You can’t perform that action at this time.
0 commit comments