We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1e6589 commit cd83263Copy full SHA for cd83263
.github/workflows/preview-release.yml
@@ -62,7 +62,11 @@ jobs:
62
run: |
63
mkdir -p dist
64
pnpm --filter @salesforce/b2c-cli deploy --legacy ./dist-deploy
65
- cd ./dist-deploy && npm pack --pack-destination ../dist
+ # Generate oclif manifest before copying (oclif CLI not in production deps)
66
+ cd ./dist-deploy && npx oclif manifest && cd ..
67
+ # Copy to break hard links from pnpm store (hoisted linker has no symlinks to break)
68
+ cp -r ./dist-deploy ./dist-pack
69
+ cd ./dist-pack && npm pack --ignore-scripts --pack-destination ../dist
70
71
- name: List packed files
72
run: ls -la dist/
0 commit comments