From 436f9683038715821e97a32db27ef7cfb599105d Mon Sep 17 00:00:00 2001 From: Aaron Langham Date: Wed, 29 Nov 2023 12:30:04 +0000 Subject: [PATCH] Add README --- README.md | 1 + buildAndPush.sh | 10 ++++++++++ 2 files changed, 11 insertions(+) create mode 100644 README.md create mode 100755 buildAndPush.sh diff --git a/README.md b/README.md new file mode 100644 index 0000000..cea1fdd --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +Simple website homepage diff --git a/buildAndPush.sh b/buildAndPush.sh new file mode 100755 index 0000000..8361f8e --- /dev/null +++ b/buildAndPush.sh @@ -0,0 +1,10 @@ +#! /usr/bin/bash + +echo "Enter Commit Comment" +read comment + +bundle exec jekyll build + +git add -A +git commit -m $comment +git push -u origin main