polyci 0.0.31 → 0.0.32
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 +2 -2
- package/package.json +1 -1
package/dist/main.js
CHANGED
|
@@ -191,7 +191,7 @@ function appendModuleBuildJob(lines, module) {
|
|
|
191
191
|
lines.push(` artifacts:`);
|
|
192
192
|
lines.push(` paths:`);
|
|
193
193
|
lines.push(` - ${module.modulePath}/dist`);
|
|
194
|
-
lines.push(` - ${module.modulePath}/
|
|
194
|
+
lines.push(` - ${module.modulePath}/polyci.env`);
|
|
195
195
|
lines.push(` expire_in: 1 day`);
|
|
196
196
|
lines.push(``);
|
|
197
197
|
}
|
|
@@ -212,7 +212,7 @@ function appendModuleTestJob(lines, module) {
|
|
|
212
212
|
lines.push(` artifacts:`);
|
|
213
213
|
lines.push(` paths:`);
|
|
214
214
|
lines.push(` - ${module.modulePath}/dist`);
|
|
215
|
-
lines.push(` - ${module.modulePath}/
|
|
215
|
+
lines.push(` - ${module.modulePath}/polyci.env`);
|
|
216
216
|
lines.push(``);
|
|
217
217
|
}
|
|
218
218
|
function appendModuleReleaseJob(lines, module, tagPattern, mainBranch, versionTemplate, branchVersionTemplate, tagTemplate) {
|