From 31fb2d2db47727b84fe32d6a1997f36069c507c3 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Sat, 1 Jun 2024 19:54:33 -0500 Subject: [PATCH] Use alpine to install rsync --- .forgejo/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index aec11612..210de457 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -9,8 +9,8 @@ jobs: steps: - name: Setup RSync run: | - apt-get update - apt-get install -y rsync + apk update + apk add rsync - name: Checkout 🛎️ uses: actions/checkout@v2