fix(ci): install rsync in Gitea Actions workflow
Deploy Storybook / Build and Deploy Storybook (push) Failing after 17m46s Details

The node:20 container doesn't include rsync by default.

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock 2026-01-25 08:23:27 -06:00
parent b13bb3b126
commit e36909d6e2
1 changed files with 4 additions and 0 deletions

View File

@ -115,6 +115,10 @@ jobs:
</html>
EOF
- name: Install deployment tools
run: |
apt-get update && apt-get install -y rsync openssh-client
- name: Deploy to NAS
env:
NAS_SSH_KEY: ${{ secrets.NAS_SSH_KEY }}