Install rsync in job container before sync step
All checks were successful
Deploy / deploy (push) Successful in 20s

This commit is contained in:
mattie726 2026-08-25 23:23:31 -07:00 committed by Barely Removable
parent 0757e95ad3
commit 49e3d20977

View file

@ -10,6 +10,9 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install rsync
run: apt-get update -qq && apt-get install -y -qq rsync
# The job container only sees its own checkout — the live app lives # The job container only sees its own checkout — the live app lives
# at /mnt/user/appdata/card-grader on the host, bind-mounted into # at /mnt/user/appdata/card-grader on the host, bind-mounted into
# this container at the same path (see runner container.options) so # this container at the same path (see runner container.options) so