From 627f2c7f815956e5ea01a4aee1d1f92dbc4587aa Mon Sep 17 00:00:00 2001 From: Abdul Rabbani Date: Mon, 18 Apr 2022 17:59:31 -0400 Subject: [PATCH] Use raw ssh only --- .github/workflows/on-pr.yaml | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/.github/workflows/on-pr.yaml b/.github/workflows/on-pr.yaml index c2338495..3d487384 100644 --- a/.github/workflows/on-pr.yaml +++ b/.github/workflows/on-pr.yaml @@ -43,13 +43,7 @@ jobs: scp -o 'StrictHostKeyChecking no' -i /tmp/key .github/workflows/run_unit_test.sh ${{ env.BUILD_USERNAME }}@${{ env.BUILD_HOSTNAME }}:/tmp/run_unit_test.sh - name: Trigger Unit Test - uses: appleboy/ssh-action@master - with: - host: ${{ env.BUILD_HOSTNAME }} - username: ${{ env.BUILD_USERNAME }} - key_path: /tmp/key - port: 22 - script: /tmp/run_unit_test.sh + run: ssh -o 'StrictHostKeyChecking no' -i /tmp/key /tmp/run_unit_test.sh - name: Get the logs and cat them run: |