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.
Files changed (2) hide show
  1. package/dist/main.js +4 -4
  2. 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: $SEMANTIC_RELEASE_TOKEN # Used to push release commits/tags.`);
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(` reports:`);
340
- lines.push(` dotenv: $MODULE_PATH/deploy.env`);
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
- // lines.push(` - apk add --update --no-cache openssh`);
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 -`);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "polyci",
3
3
  "description": "Monorepo CI/CD utilities.",
4
- "version": "0.0.19",
4
+ "version": "0.0.20",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "author": "Alexander Tsarev",