From 36ea1b56d0c62698e97d711d1a1ba14d8bc8f1ec Mon Sep 17 00:00:00 2001 From: Mia Winter Date: Sun, 2 Jun 2024 19:03:23 +0200 Subject: [PATCH] fixed rsync command in deploy action --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 14231e5..bb0d6c2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -32,4 +32,4 @@ jobs: apt-get update apt-get -y install rsync - name: Deploy with rsync - run: rsync -atv --delete --progress --checksum --whole-file -e ssh dist/ ${{ secrets.REMOTE_USER }}@${{ secrets.REMOTE_HOST }}:${{ secrets.DEPLOY_LOCATION }} + run: rsync -atv --delete --progress --checksum --whole-file -e ssh public/ ${{ secrets.REMOTE_USER }}@${{ secrets.REMOTE_HOST }}:${{ secrets.DEPLOY_LOCATION }}