remove old deploy scripts

main
andyh2 2019-09-16 19:50:43 -04:00
parent 87b77f3a57
commit e503e8fb08
2 changed files with 0 additions and 33 deletions

View File

@ -1,17 +0,0 @@
#!/bin/bash
set -e
set -x
CONTAINER=${CONTAINER:-cabana-staging}
pushd build/
find . -not -name "*.map" -type f | while read f; do
az storage blob upload --account-name chffrdist --file "$f" --container-name $CONTAINER --name "$f"
done
popd
pushd public
find img -type f | while read f; do
az storage blob upload --account-name chffrdist --file "$f" --container-name $CONTAINER --name "$f"
done
popd

View File

@ -1,16 +0,0 @@
#!/bin/bash
set -e
cd $TRAVIS_BUILD_DIR
pushd build/
find . -not -name "*.map" -type f | while read f; do
az storage blob upload --file "$f" --container-name cabana --name "$f"
done
popd
pushd public
find img -type f | while read f; do
az storage blob upload --file "$f" --container-name cabana --name "$f"
done
popd