test flow
All checks were successful
/ build (push) Successful in 19s
/ deploy (push) Successful in 19s

This commit is contained in:
Louis Guidez 2024-02-08 10:08:53 +00:00
parent b897cdb797
commit 536a57ba7a

View file

@ -28,6 +28,12 @@ jobs:
- uses: actions/download-artifact@v3 - uses: actions/download-artifact@v3
with: with:
name: dist name: dist
- name: List all files - name: rsync deployment
run: | uses: https://github.com/Burnett01/rsync-deployments@6.0.0
ls -la 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 }}