polyci 0.0.33 → 0.0.34

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 -1
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -289,7 +289,7 @@ function appendGlobalReleaseJob(lines, modules) {
289
289
  lines.push(` source "${module.modulePath}/polyci.env"`);
290
290
  lines.push(` if [ -n "$PLI_MODULE_VERSION" ] && [ -n "$PLI_MODULE_TAG" ]; then`);
291
291
  lines.push(` cp -r ci "${module.modulePath}/ci"`);
292
- lines.push(` ROOT_REPO_DIR="\${pwd}"`);
292
+ lines.push(` ROOT_REPO_DIR="\${PWD}"`);
293
293
  lines.push(` cd "${module.modulePath}"`);
294
294
  lines.push(` echo "Release ${module.moduleName} version $PLI_MODULE_VERSION."`);
295
295
  lines.push(` source "ci/${module.moduleType}/release.sh"`);
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.33",
4
+ "version": "0.0.34",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "author": "Alexander Tsarev",