File tree Expand file tree Collapse file tree 4 files changed +12
-12
lines changed
projects/fsms-angular-pubsub Expand file tree Collapse file tree 4 files changed +12
-12
lines changed Original file line number Diff line number Diff line change 46
46
with :
47
47
name : deploy_coverage
48
48
path : coverage
49
- - name : Archive Build to Releases
50
- uses : ncipollo/release-action@v1
49
+ - name : Get Tag Name
50
+ run : echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
51
+ - name : Create release
52
+ uses : actions/create-release@v1
53
+ env :
54
+ GITHUB_TOKEN : ${{ secrets.GH_TOKEN }}
51
55
with :
52
- artifacts : " dist/fsms-angular-pubsub/*"
53
- token : ${{ secrets.GH_TOKEN }}
56
+ release_name : Release ${{ env.RELEASE_VERSION }}
57
+ tag_name : ${{ env.RELEASE_VERSION }}
58
+ body_path : CHANGELOG.md.md
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @fsms/angular-pubsub-app" ,
3
- "version" : " 1.0.11 " ,
3
+ "version" : " 1.0.12 " ,
4
4
"scripts" : {
5
5
"ng" : " ng" ,
6
6
"start" : " ng serve" ,
12
12
"build:ci" : " npm run clean && npm run build:prod && npm run copyfiles" ,
13
13
"test:ci" : " ng test fsms-angular-pubsub --watch=false --browsers=ChromeHeadless --code-coverage=true" ,
14
14
"copyfiles" : " copyfiles -f README.md dist/fsms-angular-pubsub" ,
15
- "release:git" : " standard-version --release-as patch -i RELEASE_BODY.md && git add . package.json && git commit -m \" chore: bump version number\" && git push --follow-tags origin main" ,
15
+ "release:git" : " standard-version --release-as patch && git add . package.json && git commit -m \" chore: bump version number\" && git push --follow-tags origin main" ,
16
16
"release:npm" : " npm run build:ci && npm publish dist/fsms-angular-pubsub" ,
17
17
"release" : " npm run release:git && npm run release:npm" ,
18
18
"postinstall" : " ngcc"
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @fsms/angular-pubsub" ,
3
- "version" : " 1.0.11 " ,
3
+ "version" : " 1.0.12 " ,
4
4
"peerDependencies" : {
5
5
"@angular/common" : " ^10.1.6" ,
6
6
"@angular/core" : " ^10.1.6"
You can’t perform that action at this time.
0 commit comments