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 8ce5e40 commit 47a5672Copy full SHA for 47a5672
1 file changed
.github/workflows/build-node-packages.yml
@@ -59,11 +59,9 @@ jobs:
59
60
- name: Tar node-packages
61
run: |
62
- ls
63
- ls node_modules
64
- mv node_modules/bcrypt ./bcrypt@5.1.0/node_modules/bcrypt
65
- mv node_modules/cld ./cld@2.9.1/node_modules/cld
66
- mv node_modules/unix-dgram ./unix-dgram@2.0.6/node_modules/unix-dgram
+ mv -p node_modules/bcrypt ./bcrypt@5.1.0/node_modules/bcrypt
+ mv -p node_modules/cld ./cld@2.9.1/node_modules/cld
+ mv -p node_modules/unix-dgram ./unix-dgram@2.0.6/node_modules/unix-dgram
67
tar --hard-dereference -cvzf packages_${{matrix.arch}}.tar.gz bcrypt@5.1.0 cld@2.9.1 unix-dgram@2.0.6
68
69
- name: Upload archive to release
0 commit comments