X-Git-Url: https://git.r.bdr.sh/rbdr/r.bdr.sh/blobdiff_plain/9a0c66549d4fc8b37af5c3183cf6326f0aa49681..4563dbd28a493f2e690215cd00944df35e54c051:/scripts/ci.sh diff --git a/scripts/ci.sh b/scripts/ci.sh index b97ed3b..3dfc749 100755 --- a/scripts/ci.sh +++ b/scripts/ci.sh @@ -2,15 +2,15 @@ set -xe -touch .env +cp ~/.env .env if [ "$(git rev-parse origin/main)" == "$(git rev-parse HEAD)" ]; then \ echo "Deploying to Production" export S3_BUCKET=unlimited.pizza; - make environment=production upload + sudo make environment=production upload exit 0; fi echo "Deploying to Dev" export S3_BUCKET=limited.pizza; -make upload +sudo make upload