We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1531ef0 commit 27a6380Copy full SHA for 27a6380
.github/workflows/preview-release.yml
@@ -62,9 +62,12 @@ jobs:
62
run: |
63
mkdir -p dist
64
pnpm --filter @salesforce/b2c-cli deploy --legacy ./dist-deploy
65
+ # Generate oclif manifest while symlinks are intact
66
+ cd ./dist-deploy && npx oclif manifest && cd ..
67
# Copy to break hard links from pnpm's content-addressable store
68
cp -rL ./dist-deploy ./dist-pack
- cd ./dist-pack && npm pack --pack-destination ../dist
69
+ # Pack without running prepack script (manifest already generated)
70
+ cd ./dist-pack && npm pack --ignore-scripts --pack-destination ../dist
71
72
- name: List packed files
73
run: ls -la dist/
0 commit comments