File tree 2 files changed +14
-10
lines changed
2 files changed +14
-10
lines changed Original file line number Diff line number Diff line change @@ -101,11 +101,16 @@ jobs:
101
101
<< : *defaults
102
102
docker :
103
103
- image : circleci/node:8
104
+ environment :
105
+ GIT_AUTHOR_NAME : Ionitron
106
+ GIT_AUTHOR_EMAIL :
[email protected]
107
+ GIT_COMMITTER_NAME : Ionitron
108
+ GIT_COMMITTER_EMAIL :
[email protected]
104
109
steps :
105
110
- attach_workspace :
106
111
at : /tmp/workspace
107
112
- run : echo "//registry.npmjs.org/:_authToken=$NPM_TOKEN" >> ~/.npmrc
108
- - run : npm run publish:ci-4.x -- --yes
113
+ - run : npm run publish:ci -- --yes
109
114
110
115
workflows :
111
116
version : 2
@@ -114,8 +119,8 @@ workflows:
114
119
- node-6
115
120
- node-8
116
121
- node-latest
117
- # - deploy:
118
- # requires: [node-6, node-8, node-latest]
119
- # filters:
120
- # branches:
121
- # only: master
122
+ - deploy :
123
+ requires : [node-6, node-8, node-latest]
124
+ filters :
125
+ branches :
126
+ only : master
Original file line number Diff line number Diff line change 12
12
"watch" : " lerna run watch --parallel" ,
13
13
"docs" : " node packages/cli-scripts/bin/ionic-cli-scripts docs" ,
14
14
"docs:watch" : " chokidar 'packages/cli-scripts/dist/docs/**/*.js' -c 'npm run docs'" ,
15
- "publish:rc" : " lerna publish --exact --npm-tag=rc" ,
16
- "publish:canary" : " lerna publish --canary --exact --npm-tag=canary --skip-git" ,
17
- "publish:testing" : " lerna publish --canary=testing --exact --npm-tag=testing --skip-git" ,
18
- "publish" : " lerna publish --exact" ,
15
+ "publish:canary" : " lerna publish --independent --canary --exact --npm-tag=canary --skip-git" ,
16
+ "publish:testing" : " lerna publish --independent --canary=testing --exact --npm-tag=testing --skip-git" ,
17
+ "publish:ci" : " lerna publish --independent -m 'chore(release): publish [skip ci]' --exact --conventional-commits" ,
19
18
"precommit" : " npm run lint"
20
19
},
21
20
"devDependencies" : {
You can’t perform that action at this time.
0 commit comments