polyci 0.0.19 → 0.0.21
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 +7 -5
- 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,10 @@ 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
|
+
lines.push(` - export INSTANCE_HOST`);
|
|
360
|
+
lines.push(` - export INSTANCE_CONTAINER `);
|
|
361
|
+
lines.push(` - export INSTANCE_VERSION`);
|
|
359
362
|
lines.push(` - apk add --update --no-cache openssh-client-default`);
|
|
360
363
|
lines.push(` - eval $(ssh-agent -s)`);
|
|
361
364
|
lines.push(` - echo "$DEPLOY_USER_KEY" | tr -d '\\r' | ssh-add -`);
|
|
@@ -365,7 +368,6 @@ function appendModuleDeployJob(lines, module) {
|
|
|
365
368
|
lines.push(` - chmod 644 ~/.ssh/known_hosts`);
|
|
366
369
|
lines.push(` - echo -n $CI_JOB_TOKEN | docker login -u $CI_REGISTRY_USER --password-stdin $CI_REGISTRY`);
|
|
367
370
|
lines.push(` - docker context create remote --docker "host=ssh://$DEPLOY_USER@$DEPLOY_ADDRESS:$DEPLOY_PORT"`);
|
|
368
|
-
// lines.push(` - docker context use remote`);
|
|
369
371
|
lines.push(` - cd ci`);
|
|
370
372
|
lines.push(` - export DOCKER_API_VERSION=1.41`);
|
|
371
373
|
lines.push(` - docker --context remote compose -p $INSTANCE_CONTAINER down --remove-orphans`);
|