9 lines
270 B
Bash
9 lines
270 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
cd ~/kurs-platform
|
|
git restore ui/public/version.json 2>/dev/null || git checkout -- ui/public/version.json
|
|
|
|
./configs/deployment/scripts/build/api.sh
|
|
./configs/deployment/scripts/build/migrator.sh
|
|
./configs/deployment/scripts/build/ui.sh production
|