From 44399ed9c3b6edaac799a59dafd1c65f1b393c26 Mon Sep 17 00:00:00 2001 From: David Benham Date: Fri, 25 Oct 2024 19:02:00 -0400 Subject: [PATCH] Update dev-push.yml --- .github/workflows/dev-push.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/dev-push.yml b/.github/workflows/dev-push.yml index b99aa24aed..9d22722183 100644 --- a/.github/workflows/dev-push.yml +++ b/.github/workflows/dev-push.yml @@ -33,7 +33,7 @@ jobs: echo "Checking if 'freeze-auto-deployments' file exists and conditionally stashing and pulling" ssh -o StrictHostKeyChecking=no hubadmin@dev.purr.purdue.edu " if [ ! -f /var/www/dev/freeze-auto-deployments ]; then - echo 'No freeze-auto-deployments file found. Proceeding with stash and pull.' + echo 'No freeze-auto-deployments file found. Proceeding with stash and pull." echo \"$(date) ----------------------------------------- begin auto deployment" echo \"$(date) - No freeze-auto-deployments file found. Stashing and pulling.\" >> /var/www/dev/auto-deployments.log cd /var/www/dev/; @@ -42,7 +42,7 @@ jobs: git pull --ff-only >> /var/www/dev/auto-deployments.log 2>&1; echo \"$(date) ----------------------------------------- end auto deployment" else - echo 'freeze-auto-deployments file exists. Skipping stash and pull.' + echo 'freeze-auto-deployments file exists. Skipping stash and pull." echo \"$(date) - freeze-auto-deployments file exists, auto deployment skipped.\" >> /var/www/dev/auto-deployments.log fi "