Files
WeatherTool/deploy.sh
T
2023-05-23 22:02:56 +03:00

11 lines
135 B
Bash
Executable File

#!/bin/bash
cd web
npm run build
cd ..
if sbt test; then
sbt assembly && fly deploy
else
echo "Tests failed, skipping deploy!"
fi