From e988b7588ccbd89eb7d3415ae07c13fdd3609134 Mon Sep 17 00:00:00 2001 From: Trey Date: Fri, 8 Mar 2024 16:19:41 -0500 Subject: [PATCH] adding logs for initial steps --- .github/workflows/cicd.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index bea9cd9b..e7c25ea2 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -12,6 +12,7 @@ jobs: steps: - name: Configure SSH run: | + echo "Configuring SSH to reach staging instance." mkdir -p ~/.ssh echo "${{ secrets.ADLNET_STAGING_SSH_KEY }}" > ~/.ssh/id_rsa chmod 600 ~/.ssh/id_rsa @@ -19,6 +20,7 @@ jobs: - name: Deploy code on Staging run: | + echo "SSH into staging machine." ssh ${{ secrets.ADLNET_STAGING_HOST_USER }}@${{ secrets.ADLNET_STAGING_HOST }} cd ${{ secrets.ADLNET_STAGING_PROJECT_DIR }} echo 'Pulling Latest Code from Repository...'