From a0830a91a855a61e0f04bb8520d5cfa567cbc60a Mon Sep 17 00:00:00 2001 From: zkldi <20380519+zkldi@users.noreply.github.com> Date: Fri, 4 Oct 2024 13:42:56 +0100 Subject: [PATCH] fix: copy not into folder --- .github/workflows/client.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/client.yml b/.github/workflows/client.yml index 7da0c696b..6f559eeac 100644 --- a/.github/workflows/client.yml +++ b/.github/workflows/client.yml @@ -108,13 +108,13 @@ jobs: - name: Deploy Kamaitachi if: github.ref == 'refs/heads/main' - run: rsync --recursive --compress --delete --progress ~/kamai ci@"$TACHI_HOST":tachi-client/kamai + run: rsync --recursive --compress --delete --progress ~/kamai/. ci@"$TACHI_HOST":tachi-client/kamai env: TACHI_HOST: ${{secrets.TACHI_HOST}} - name: Deploy Bokutachi if: github.ref == 'refs/heads/main' - run: rsync --recursive --compress --delete --progress ~/boku ci@"$TACHI_HOST":tachi-client/boku + run: rsync --recursive --compress --delete --progress ~/boku/. ci@"$TACHI_HOST":tachi-client/boku env: TACHI_HOST: ${{secrets.TACHI_HOST}} @@ -132,6 +132,6 @@ jobs: BUILD_OUT_DIR: /home/runner/staging - name: Deploy Staging - run: rsync --recursive --compress --delete --progress ~/staging ci@"$TACHI_HOST":tachi-client/staging + run: rsync --recursive --compress --delete --progress ~/staging/. ci@"$TACHI_HOST":tachi-client/staging env: TACHI_HOST: ${{secrets.TACHI_HOST}}