APPS-241 - create Community Release for v2.7

This commit is contained in:
ehardon
2020-10-02 13:48:37 +03:00
parent da11c7021f
commit 41c38e8e18
3 changed files with 63 additions and 3 deletions

12
scripts/zip-artifacts.sh Normal file
View File

@@ -0,0 +1,12 @@
#!/bin/bash
set -e
if [ $1 == 'community' ]; then
mkdir "artifacts_dir"
cp rm-community/rm-community-repo/target/alfresco-rm-*community*amp artifacts_dir
cp rm-community/rm-community-share/target/alfresco-rm-*community*amp artifacts_dir
zip alfresco-rm-community-${RELEASE_VERSION}.zip *amp
cp alfresco-rm-community-${RELEASE_VERSION}.zip artifacts_dir
ls artifacts_dir
#elif [ $1 == "enterprise" ]; then
fi