From 536a57ba7a8846f1d8e314ffd2010ec04e02d125 Mon Sep 17 00:00:00 2001 From: Louis Guidez Date: Thu, 8 Feb 2024 10:08:53 +0000 Subject: [PATCH] test flow --- .forgejo/workflows/deploy.yaml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/deploy.yaml b/.forgejo/workflows/deploy.yaml index 622602e..860758b 100644 --- a/.forgejo/workflows/deploy.yaml +++ b/.forgejo/workflows/deploy.yaml @@ -28,6 +28,12 @@ jobs: - uses: actions/download-artifact@v3 with: name: dist - - name: List all files - run: | - ls -la \ No newline at end of file + - name: rsync deployment + uses: https://github.com/Burnett01/rsync-deployments@6.0.0 + with: + switches: -az --no-o --no-g --no-devices --no-specials --delete --progress --checksum + path: . + remote_path: ${{ secrets.DEPLOY_PATH }} + remote_host: ${{ secrets.DEPLOY_HOST }} + remote_user: ${{ secrets.DEPLOY_USER }} + remote_key: ${{ secrets.DEPLOY_KEY }} \ No newline at end of file