cabana/scripts/travis-deploy-deprecated.sh

17 lines
274 B
Bash

#!/bin/bash
set -e
cd $TRAVIS_BUILD_DIR
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