From 5633dd01c8e5ef2c48d2d11fb92ee5549ed12739 Mon Sep 17 00:00:00 2001 From: Benjamin Sanders Date: Thu, 16 Oct 2025 18:50:02 -0400 Subject: removed GEMFILE from site --- deploy-site.sh | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 deploy-site.sh (limited to 'deploy-site.sh') diff --git a/deploy-site.sh b/deploy-site.sh new file mode 100644 index 0000000..d039515 --- /dev/null +++ b/deploy-site.sh @@ -0,0 +1,16 @@ +#!/bin/bash + +JEKYLL_DIR="/_site" +DEPLOY_USER="sanderstggrp" +DEPLOY_HOST="64.42.181.202" +DEPLOY_PORT="22" +DEPLOY_PATH="/home/sanderstggrp/web/sanderstechnologygroup.com/public_html" + +# cd "$JEKYLL_DIR" +# bundle exec jekyll build + +rsync -avz --delete -e "ssh -p $DEPLOY_PORT" \ + _site/ \ + $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH + +echo "Deployment complete." \ No newline at end of file -- cgit v1.2.3