File tree Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Expand file tree Collapse file tree 2 files changed +48
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Module release
2+ on :
3+ push :
4+ branches :
5+ - main
6+
7+ permissions :
8+ issues : write
9+ contents : write
10+ pull-requests : write
11+
12+ jobs :
13+ release-module :
14+ name : Release
15+ runs-on : ubuntu-latest
16+ steps :
17+ - name : Checkout
18+ uses : actions/checkout@v3
19+ with :
20+ fetch-depth : 0
21+ - name : Setup Node.js
22+ uses : actions/setup-node@v3
23+ with :
24+ node-version : ' lts/*'
25+ - name : Install dependencies
26+ run : npm install
27+ - name : Release
28+ env :
29+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
30+ run : npx semantic-release
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " terraform-aws-analytics-pipeline" ,
3+ "private" : true ,
4+ "devDependencies" : {
5+ "@semantic-release/github" : " ^11.0.6" ,
6+ "semantic-release" : " ^24.2.9"
7+ },
8+ "release" : {
9+ "branches" : [
10+ " main"
11+ ]
12+ },
13+ "plugins" : [
14+ " @semantic-release/commit-analyzer" ,
15+ " @semantic-release/release-notes-generator" ,
16+ " @semantic-release/github"
17+ ]
18+ }
You can’t perform that action at this time.
0 commit comments