From 8f0562e287de39d190d7d8efc73a807f747217cb Mon Sep 17 00:00:00 2001 From: Chuck Dries Date: Sat, 2 May 2020 18:48:18 -0700 Subject: [PATCH] Try a different action --- .github/workflows/main.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 760412e..d2dc4a0 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -20,10 +20,13 @@ jobs: steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - - uses: appleboy/scp-action@v0.0.1 + - name: ls + run: ls -al + - name: Copy folder content recursively to remote + uses: garygrossgarten/github-action-scp@release with: - host: "chuckdries.com" + local: "./" + remote: ${{ secrets.DEPLOY_PATH }} + host: ${{ secrets.HOST }} username: ${{ secrets.CI_USER }} password: ${{ secrets.CI_PASSWORD }} - source: "$(pwd)" - target: ${{ secrets.DEPLOY_PATH }}