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.
Files changed (2) hide show
  1. package/dist/main.js +2 -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}/policy.env`);
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}/policy.env`);
215
+ lines.push(` - ${module.modulePath}/polyci.env`);
216
216
  lines.push(``);
217
217
  }
218
218
  function appendModuleReleaseJob(lines, module, tagPattern, mainBranch, versionTemplate, branchVersionTemplate, tagTemplate) {
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.31",
4
+ "version": "0.0.32",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "author": "Alexander Tsarev",