From df865aed83a4fc27e65057080e56043f434bf9c4 Mon Sep 17 00:00:00 2001 From: "Ycarus (Yannick Chabanois)" Date: Sat, 12 Sep 2020 20:19:03 +0200 Subject: [PATCH] Update main.yml --- .github/workflows/main.yml | 34 ++++++++++++++++------------------ 1 file changed, 16 insertions(+), 18 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 3b69b6677..a3dccaf0c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -87,31 +87,29 @@ jobs: key: ${{ secrets.PRIVATE_KEY }} - if: steps.branch_name.outputs.SOURCE_BRANCH == '' name: Deploy - Upload via rsync - uses: galexrt/rsync-deployments@master + uses: burnett01/rsync-deployments@4.1 with: - RSYNC_OPTIONS: -av --delete-after - RSYNC_TARGET: deploy/release/${{env.SOURCE_TAG}}/${{env.OMR_TARGET}} - RSYNC_SOURCE: ./openmptcprouter/${{env.OMR_TARGET}}/source/bin/ - env: - SSH_PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} - SSH_USERNAME: deploy - SSH_HOSTNAME: ${{ secrets.OMR_DEPLOY_HOST }} - SSH_PORT: ${{ secrets.OMR_DEPLOY_PORT }} + switches: -av --delete-after + remote_path: deploy/${{env.SOURCE_BRANCH}}/${{env.OMR_KERNEL}}/${{env.OMR_TARGET}} + path: ./openmptcprouter/${{env.OMR_TARGET}}/source/bin/ + remote_key: ${{ secrets.PRIVATE_KEY }} + remote_user: deploy + remote_host: ${{ secrets.OMR_DEPLOY_HOST }} + remote_port: ${{ secrets.OMR_DEPLOY_PORT }} SOURCE_NAME: ${{ steps.branch_name.outputs.SOURCE_NAME }} SOURCE_BRANCH: ${{ steps.branch_name.outputs.SOURCE_BRANCH }} SOURCE_TAG: ${{ steps.branch_name.outputs.SOURCE_TAG }} - if: steps.branch_name.outputs.SOURCE_BRANCH != '' name: Deploy - Upload via rsync - uses: galexrt/rsync-deployments@master + uses: burnett01/rsync-deployments@4.1 with: - RSYNC_OPTIONS: -av --delete-after - RSYNC_TARGET: deploy/${{env.SOURCE_BRANCH}}/${{env.OMR_KERNEL}}/${{env.OMR_TARGET}} - RSYNC_SOURCE: ./openmptcprouter/${{env.OMR_TARGET}}/source/bin/ - env: - SSH_PRIVATE_KEY: ${{ secrets.PRIVATE_KEY }} - SSH_USERNAME: deploy - SSH_HOSTNAME: ${{ secrets.OMR_DEPLOY_HOST }} - SSH_PORT: ${{ secrets.OMR_DEPLOY_PORT }} + switches: -av --delete-after + remote_path: deploy/${{env.SOURCE_BRANCH}}/${{env.OMR_KERNEL}}/${{env.OMR_TARGET}} + path: ./openmptcprouter/${{env.OMR_TARGET}}/source/bin/ + remote_key: ${{ secrets.PRIVATE_KEY }} + remote_user: deploy + remote_host: ${{ secrets.OMR_DEPLOY_HOST }} + remote_port: ${{ secrets.OMR_DEPLOY_PORT }} SOURCE_NAME: ${{ steps.branch_name.outputs.SOURCE_NAME }} SOURCE_BRANCH: ${{ steps.branch_name.outputs.SOURCE_BRANCH }} SOURCE_TAG: ${{ steps.branch_name.outputs.SOURCE_TAG }}