Skip to content

Commit

Permalink
fix: don't build up client plaque
Browse files Browse the repository at this point in the history
  • Loading branch information
zkrising committed Aug 18, 2024
1 parent bdcb44f commit 8a57bc0
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 @@ -105,13 +105,13 @@ jobs:

- name: Deploy Kamaitachi
if: github.ref == 'refs/heads/main'
run: scp -r ~/kamai ci@"$TACHI_HOST":tachi-client
run: rm -rf ~/kamai && scp -r ~/kamai ci@"$TACHI_HOST":tachi-client
env:
TACHI_HOST: ${{secrets.TACHI_HOST}}

- name: Deploy Bokutachi
if: github.ref == 'refs/heads/main'
run: scp -r ~/boku ci@"$TACHI_HOST":tachi-client
run: rm -rf ~/boku && scp -r ~/boku ci@"$TACHI_HOST":tachi-client
env:
TACHI_HOST: ${{secrets.TACHI_HOST}}

Expand All @@ -129,6 +129,6 @@ jobs:
BUILD_OUT_DIR: /home/runner/staging

- name: Deploy Staging
run: scp -r ~/staging ci@"$TACHI_HOST":tachi-client
run: rm -rf ~/staging && scp -r ~/staging ci@"$TACHI_HOST":tachi-client
env:
TACHI_HOST: ${{secrets.TACHI_HOST}}

0 comments on commit 8a57bc0

Please sign in to comment.