We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe626b3 commit 1531ef0Copy full SHA for 1531ef0
.github/workflows/preview-release.yml
@@ -62,7 +62,9 @@ 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
+ # Copy to break hard links from pnpm's content-addressable store
66
+ cp -rL ./dist-deploy ./dist-pack
67
+ cd ./dist-pack && npm pack --pack-destination ../dist
68
69
- name: List packed files
70
run: ls -la dist/
.gitignore
@@ -3,6 +3,7 @@
3
**/.DS_Store
4
/.idea
5
dist
6
+dist-deploy
7
/tmp
8
node_modules
9
/coverage
0 commit comments