mirror of
https://github.com/Alfresco/acs-community-packaging.git
synced 2026-09-16 18:13:21 +00:00
This allows a single s3 deploy stage and provides a workaround for the glob alias not working as expected in travis.yml [trigger release]
8 lines
236 B
Bash
8 lines
236 B
Bash
#!/usr/bin/env bash
|
|
set -ev
|
|
|
|
DEPLOYMENT_DIR=deploy_dir
|
|
|
|
mkdir $DEPLOYMENT_DIR -p
|
|
cp war/target/alfresco.war ${DEPLOYMENT_DIR}
|
|
cp distribution/target/alfresco-content-services-community-distribution-$release_version.zip ${DEPLOYMENT_DIR} |