oliverdavies.uk/tools/scripts/publish

10 lines
229 B
Text
Raw Normal View History

2025-03-30 21:17:25 +01:00
#!/usr/bin/env bash
set -o errexit
set -o nounset
set -o pipefail
vendor/bin/sculpin generate --env prod
rsync -uvrP static/ output_prod "$@"
2025-05-05 01:06:09 +01:00
rsync -uvrP output_prod/ nixedo.oliverdavies.uk:/var/www/vhosts/website-sculpin "$@"