cabana/scripts/travis-deploy-deprecated.sh

20 lines
321 B
Bash
Executable File

#!/bin/bash
set -e
cd $TRAVIS_BUILD_DIR
# decline stats generation
yes n | azure help
pushd build/
find . -not -name "*.map" -type f | while read f; do
azure storage blob upload -q "$f" cabana "$f"
done
popd
pushd public
find img -type f | while read f; do
azure storage blob upload -q "$f" cabana "$f"
done
popd