use tarball

Signed-off-by: Travis Glenn Hansen <travisghansen@yahoo.com>
This commit is contained in:
Travis Glenn Hansen 2022-02-21 11:31:19 -07:00
parent 59df4a7af8
commit ee549cc694
2 changed files with 4 additions and 1 deletions

View File

@ -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:

View File

@ -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