From 705ac24e3b3df25d9064a0ebe7ab98ec4da454bc Mon Sep 17 00:00:00 2001 From: pabloFuente Date: Fri, 30 Dec 2022 17:08:36 +0100 Subject: [PATCH] Extend commons-sh script to pack NPM dependencies into tgzs --- ci-scripts/commons.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci-scripts/commons.sh b/ci-scripts/commons.sh index e4f2aebd..15f6c466 100755 --- a/ci-scripts/commons.sh +++ b/ci-scripts/commons.sh @@ -185,6 +185,7 @@ if [[ "${BUILD_OV_BROWSER}" == true || "${EXECUTE_ALL}" == true ]]; then npm install npm run build npm link + npm pack && mv openvidu-browser-*.tgz /opt/openvidu/. popd fi @@ -196,6 +197,7 @@ if [[ "${BUILD_OV_NODE_CLIENT}" == true || "${EXECUTE_ALL}" == true ]]; then npm install npm run build npm link + npm pack && mv openvidu-node-client-*.tgz /opt/openvidu/. popd fi