polyci 0.0.29 → 0.0.30

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 -2
  2. package/package.json +1 -1
package/dist/main.js CHANGED
@@ -229,8 +229,7 @@ function appendModuleReleaseJob(lines, module, tagPattern) {
229
229
  lines.push(` script:`);
230
230
  lines.push(` - apk update`);
231
231
  lines.push(` - apk add $GIT_PACKAGE`);
232
- lines.push(` - cd ${module.modulePath}`);
233
- lines.push(` - npx semalease --tag-pattern "${tagPattern}" semalease.env`);
232
+ lines.push(` - npx semalease --cwd "${module.modulePath}" --tag-pattern "${tagPattern}" ${module.modulePath}/semalease.env`);
234
233
  lines.push(` artifacts:`);
235
234
  lines.push(` paths:`);
236
235
  lines.push(` - $MODULE_PATH/dist`);
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.29",
4
+ "version": "0.0.30",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "author": "Alexander Tsarev",