Files
edb-www/bin/deploy
Nikolai R Kristiansen 1ba3df7b2e 💚 Fix deploy path
2022-02-27 12:42:55 +01:00

12 lines
167 B
Bash
Executable File

#!/bin/bash
set -eu
PROJECT_PATH=/var/www/neuf.no/edb/edb-www
echo "Deploying bbs to ${PROJECT_PATH}"
cd "$PROJECT_PATH" || exit 1
git pull
npm run i
npm run build