Compare commits

...

10 Commits

Author SHA1 Message Date
bb36beb682 3.0.35 2018-05-03 19:48:03 +02:00
3417ca83ed 3.0.34 2018-05-03 19:12:22 +02:00
dea6264c34 update ci 2018-05-03 19:12:17 +02:00
b6ca597ca5 3.0.33 2018-05-03 19:05:12 +02:00
1539d49426 update publish process 2018-05-03 19:05:09 +02:00
51fbc906a0 3.0.32 2018-04-29 17:40:18 +02:00
0e3732cade update 2018-04-29 17:40:14 +02:00
4f968472c8 update 2018-04-29 17:37:59 +02:00
68aa8d1302 3.0.31 2018-04-29 17:37:06 +02:00
cbfe992ffc update 2018-04-29 17:37:04 +02:00
4 changed files with 3 additions and 8 deletions

View File

@@ -63,6 +63,7 @@ testSTABLE:
release:
stage: release
script:
- npmci node install stable
- npmci npm prepare
- npmci npm publish
only:

View File

@@ -5,11 +5,8 @@
"cli": true
},
"npmci": {
"globalNpmTools": [
"npmts"
],
"npmGlobalTools": [
"npmts"
"@gitzone/npmts"
],
"npmAccessLevel": "public"
},

View File

@@ -1,6 +1,6 @@
{
"name": "@shipzone/npmci",
"version": "3.0.30",
"version": "3.0.35",
"description": "node and docker in gitlab ci on steroids",
"main": "dist/index.js",
"typings": "dist/index.d.ts",

View File

@@ -70,9 +70,6 @@ let publish = async () => {
await bash(`yarn install`);
await bash(`yarn run build`);
// -> make sure npm is authenticated
prepare();
// -> publish it
await bash(`npm publish ${npmAccessCliString}`);
};