use tarball
Signed-off-by: Travis Glenn Hansen <travisghansen@yahoo.com>
This commit is contained in:
parent
59df4a7af8
commit
ee549cc694
|
|
@ -31,7 +31,8 @@ jobs:
|
|||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: node-modules
|
||||
path: node_modules/
|
||||
#path: node_modules/
|
||||
path: node_modules.tar.gz
|
||||
|
||||
csi-sanity-synology:
|
||||
needs:
|
||||
|
|
|
|||
|
|
@ -6,4 +6,6 @@ set -x
|
|||
export PATH="/usr/local/lib/nodejs/bin:${PATH}"
|
||||
# install deps
|
||||
npm i
|
||||
|
||||
# tar node_modules to keep the number of files low to upload
|
||||
tar -zcvf node_modules.tar.gz node_modules
|
||||
|
|
|
|||
Loading…
Reference in New Issue