From bb8dc9f529ef0fb8746a184490a1453905dd8afc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Menrath?= Date: Sat, 25 Nov 2023 12:31:51 +0100 Subject: [PATCH] actions need to run apt update before install --- .forgejo/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.forgejo/workflows/deploy.yml b/.forgejo/workflows/deploy.yml index 8ad1d3e..f847f56 100644 --- a/.forgejo/workflows/deploy.yml +++ b/.forgejo/workflows/deploy.yml @@ -17,7 +17,7 @@ jobs: uses: https://code.forgejo.org/actions/checkout@v4 - name: Install rsync - run: apt install -y rsync + run: apt-update && apt install -y rsync - name: Deploy via rsync uses: https://github.com/burnett01/rsync-deployments@6.0.0