Skip to content

Commit

Permalink
fix: copy not into folder
Browse files Browse the repository at this point in the history
  • Loading branch information
zkrising committed Oct 4, 2024
1 parent a146978 commit a0830a9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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}}

Expand All @@ -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}}

0 comments on commit a0830a9

Please sign in to comment.