polyci 0.1.5 → 0.1.7

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 +1 -4
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -162,12 +162,9 @@ function appendGlobalVariables(lines) {
162
162
  lines.push(`variables:`);
163
163
  lines.push(` IMAGE_LINUX: alpine:latest`);
164
164
  lines.push(` IMAGE_NODE: node:alpine`);
165
- lines.push(` IMAGE_GIT: alpine/git:latest`);
166
- lines.push(` IMAGE_NGINX: nginx:alpine-slim`);
167
- lines.push(` IMAGE_DOCKER: docker:latest`);
168
- lines.push(` IMAGE_COMPOSE: docker:cli`);
169
165
  lines.push(` GIT_PACKAGE: git`);
170
166
  lines.push(` GIT_STRATEGY: clone`); //this prevents the stale tags in the ci job.
167
+ lines.push(` GIT_DEPTH: 0`); //this prevents the shallow tags in the ci job.
171
168
  lines.push(``);
172
169
  lines.push(`stages:`);
173
170
  lines.push(` - build`);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "polyci",
3
3
  "description": "Monorepo CI/CD utilities.",
4
- "version": "0.1.5",
4
+ "version": "0.1.7",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "author": "Alexander Tsarev",