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.
- package/dist/main.js +1 -4
- 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`);
|