Skip to content

Commit 9b45685

Browse files
committed
refactor: Reorganize release-please setup with the new paths
1 parent 0ef9aae commit 9b45685

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/release-please.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
echo "🚀 Publishing @ui5/${{ matrix.package }}"
5555
5656
# TODO: Uncomment when ready to publish
57-
# npm ci
57+
# npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
5858
# npm publish --access public
5959
6060
publish-cli:
@@ -73,15 +73,15 @@ jobs:
7373
run: |
7474
set -e
7575
# Install dependencies
76-
npm ci
76+
npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
7777
78-
# Build all the extractor
79-
cd ./lib/shrinkwrap-extractor
80-
npm ci
78+
# Build the extractor
79+
cd ./packages/shrinkwrap-extractor
80+
npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo
8181
8282
# Generate npm-shrinkwrap.json
83-
cd ../../packages/cli
84-
node ../../lib/shrinkwrap-extractor/cli.js ../../
83+
cd ../cli
84+
node ../shrinkwrap-extractor/cli.js @ui5/cli ../../package-lock.json
8585
8686
- name: Publish @ui5/cli
8787
working-directory: packages/cli

0 commit comments

Comments
 (0)