polyci 0.0.19 → 0.0.20
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/main.js +4 -4
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -251,7 +251,7 @@ function appendGlobalReleaseJob(lines, modules, mainBranch, tagTemplate, branchT
|
|
|
251
251
|
}
|
|
252
252
|
lines.push(` image: $IMAGE_NODE`);
|
|
253
253
|
lines.push(` variables:`);
|
|
254
|
-
lines.push(` GITLAB_TOKEN: $
|
|
254
|
+
lines.push(` GITLAB_TOKEN: $POLYCI_TOKEN # Used to push release commits/tags.`);
|
|
255
255
|
lines.push(` script:`);
|
|
256
256
|
lines.push(` - apk update`);
|
|
257
257
|
lines.push(` - apk add $GIT_PACKAGE`);
|
|
@@ -336,8 +336,8 @@ function appendModulePublishJob(lines, module) {
|
|
|
336
336
|
lines.push(` - docker build --tag $CI_REGISTRY_IMAGE/$MODULE_NAME:v$INSTANCE_VERSION .`);
|
|
337
337
|
lines.push(` - docker push $CI_REGISTRY_IMAGE/$MODULE_NAME:v$INSTANCE_VERSION`);
|
|
338
338
|
lines.push(` artifacts:`);
|
|
339
|
-
lines.push(`
|
|
340
|
-
lines.push(`
|
|
339
|
+
lines.push(` paths:`);
|
|
340
|
+
lines.push(` - $MODULE_PATH/deploy.env`);
|
|
341
341
|
lines.push(` expire_in: 1 day`);
|
|
342
342
|
lines.push(``);
|
|
343
343
|
}
|
|
@@ -355,7 +355,7 @@ function appendModuleDeployJob(lines, module) {
|
|
|
355
355
|
lines.push(` MODULE_PATH: ${module.modulePath}`);
|
|
356
356
|
lines.push(` MODULE_TYPE: ${module.moduleType}`);
|
|
357
357
|
lines.push(` script:`);
|
|
358
|
-
|
|
358
|
+
lines.push(` - source $MODULE_PATH/deploy.env`);
|
|
359
359
|
lines.push(` - apk add --update --no-cache openssh-client-default`);
|
|
360
360
|
lines.push(` - eval $(ssh-agent -s)`);
|
|
361
361
|
lines.push(` - echo "$DEPLOY_USER_KEY" | tr -d '\\r' | ssh-add -`);
|