From dc40621eed262341110227b616b9612665c37a90 Mon Sep 17 00:00:00 2001 From: mattie726 Date: Tue, 25 Aug 2026 23:23:32 -0700 Subject: [PATCH] Install rsync in job container before sync step --- .forgejo/workflows/deploy.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 7bbc68f..0052f2a 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -10,6 +10,9 @@ jobs: steps: - 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 # at /mnt/user/appdata/lunch-notifier on the host, bind-mounted into # this container at the same path (see runner container.options) so