From 6c4481a9a17e941148b120c7ea9bf3b8af7c70bf Mon Sep 17 00:00:00 2001 From: Samuel John Date: Thu, 28 Dec 2023 09:13:13 +0100 Subject: [PATCH] try 5 --- .github/workflows/deploy.yml | 2 +- ops/sh/app.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index d066d3e..9bb5e5e 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -246,7 +246,7 @@ jobs: - name: Copy envfile run: | # Copy .env file into deploy server - echo "I was here at $(date)" > hi.txt + echo -e "This is deploy-app ga step speaking\n\nI was here at $(date)" > hi.txt scp -o "StrictHostKeyChecking=no" -r "$GA_ENV_SRC/$GA_ENV_FILE" "$HOST_USER@$HOST_URL:$GA_ENV_DEST" scp -o "StrictHostKeyChecking=no" -r hi.txt "$HOST_USER@$HOST_URL:$GA_ENV_DEST" - name: Check status diff --git a/ops/sh/app.sh b/ops/sh/app.sh index c7d894f..2fb9021 100755 --- a/ops/sh/app.sh +++ b/ops/sh/app.sh @@ -889,7 +889,7 @@ ga_deploy_app() { # Enter app dir echo -e "\nEntering app directory..." cd "$GA_APP_DIR" - echo "I was here at $(date)" > hi.txt + echo -e "This is ga_deploy_app function speaking\n\nI was here at $(date)" > hi.txt # Pull repo changes echo -e "\nDownloading latest repo changes..."