aboutsummaryrefslogtreecommitdiff
path: root/refresh.sh
diff options
context:
space:
mode:
authorMartin Ashby <martin@ashbysoft.com>2022-12-30 17:39:41 +0000
committerMartin Ashby <martin@ashbysoft.com>2022-12-30 17:39:41 +0000
commitfd330cb15d5247a467d086d9b227b56ab4bd2879 (patch)
tree6c781f51b2edfeeb26eb5a4a6c30a5d0ba8ba5c4 /refresh.sh
parentaebf70ed75dbbe1fbbf0f72f7d9f94f08aab0ed5 (diff)
downloadmfashby.net-fd330cb15d5247a467d086d9b227b56ab4bd2879.tar.gz
mfashby.net-fd330cb15d5247a467d086d9b227b56ab4bd2879.tar.bz2
mfashby.net-fd330cb15d5247a467d086d9b227b56ab4bd2879.tar.xz
mfashby.net-fd330cb15d5247a467d086d9b227b56ab4bd2879.zip
Rename refresh.sh -> deploy.sh
Add step to stop comments app before copying new binary
Diffstat (limited to 'refresh.sh')
-rwxr-xr-xrefresh.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/refresh.sh b/refresh.sh
deleted file mode 100755
index d94502d..0000000
--- a/refresh.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-#!/usr/bin/env bash
-
-set -e
-
-git pull
-
-# Copy static site
-hugo
-scp -r public/* root@rpi3:/var/www/mfashby.net/
-
-# build & install comments app
-pushd comments
-RUSTFLAGS="-C linker=aarch64-linux-gnu-gcc" cargo build --target=aarch64-unknown-linux-gnu --release
-scp target/aarch64-unknown-linux-gnu/release/comments root@rpi3:/usr/local/bin/comments
-scp comments.service root@rpi3:/etc/systemd/system/comments.service
-ssh root@rpi3 -C systemctl daemon-reload
-ssh root@rpi3 -C systemctl restart comments
-popd
-