Files
WeatherTool/deploy.sh
T

11 lines
135 B
Bash
Raw Normal View History

2023-05-14 16:18:25 +03:00
#!/bin/bash
cd web
npm run build
cd ..
2023-05-23 22:02:56 +03:00
if sbt test; then
sbt assembly && fly deploy
else
echo "Tests failed, skipping deploy!"
fi