File tree 2 files changed +16
-3
lines changed
2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change 34
34
PR_TITLE='${{ github.event.pull_request.title }}'
35
35
echo "PR TITLE": '$PR_TITLE'
36
36
echo "$PR_TITLE" | npx commitlint
37
+
38
+ generate-changelog :
39
+ name : Generate Changelog # ? should we comment in the PR?
40
+ runs-on : ubuntu-latest
41
+ steps :
42
+ - uses : actions/checkout@v4
43
+ with :
44
+ fetch-depth : 0
45
+ - uses : ./.github/actions/setup
46
+
47
+ - name : Generate Changelog
48
+ run : |
49
+ git checkout -b changelog
50
+ npx nx version ngx-deploy-npm --dry-run
Original file line number Diff line number Diff line change 65
65
]
66
66
}
67
67
},
68
- "deploy " : {
68
+ "publish " : {
69
69
"executor" : " ./dist/packages/ngx-deploy-npm:deploy" ,
70
70
"options" : {
71
71
"distFolderPath" : " dist/packages/ngx-deploy-npm" ,
72
72
"access" : " public"
73
73
},
74
74
"dependsOn" : [" build" ]
75
75
},
76
- "deploy :without-build" : {
76
+ "publish :without-build" : {
77
77
"executor" : " ./dist/packages/ngx-deploy-npm:deploy" ,
78
78
"options" : {
79
79
"distFolderPath" : " dist/packages/ngx-deploy-npm" ,
90
90
"version" : {
91
91
"executor" : " @jscutlery/semver:version" ,
92
92
"options" : {
93
- "postTargets" : [" build" , " deploy" ],
94
93
"versionTagPrefix" : " v"
95
94
}
96
95
}
You can’t perform that action at this time.
0 commit comments