Skip to content

Commit

Permalink
feat: install rsync properly
Browse files Browse the repository at this point in the history
  • Loading branch information
zkrising committed Sep 19, 2024
1 parent 4658937 commit 07f6c4d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Install rsync
run: sudo apt install -y rsync

- uses: pnpm/action-setup@v4
with:
version: 8.15.6
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v3

- name: Install rsync
run: sudo apt install -y rsync

- name: Enable SSH Key
run: |
Expand All @@ -32,9 +35,6 @@ jobs:
- name: Build Docs
run: docker run -v ./site:/site --entrypoint="mkdocs" docs build

- name: Install rsync
run: apt install -y rsync

- name: Deploy docs
run: rsync --recursive --compress --delete --progress ./site/. ci@"$TACHI_HOST":tachi-docs
env:
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/homepage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v3

- name: Install rsync
run: sudo apt install -y rsync

- uses: pnpm/action-setup@v4
with:
version: 8.15.6
Expand Down

0 comments on commit 07f6c4d

Please sign in to comment.