From bae89493059f71d087b4fe19aeecc08046532131 Mon Sep 17 00:00:00 2001 From: Stephan Hadan Date: Sun, 26 Jan 2025 11:38:35 +0100 Subject: [PATCH] fixed missing rsync in build pipelines --- .gitea/workflows/ci.yml | 1 + .gitea/workflows/develop.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3d46312..ef1dc1e 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -19,6 +19,7 @@ jobs: - run: npm install - run: npm run build # - run: npm run create:ast + - run: apt-get update && apt-get install -y rsync - name: Create private key run: | echo "${{ secrets.ACT_RUNNER_KEY }}" > /tmp/act_runner_key diff --git a/.gitea/workflows/develop.yml b/.gitea/workflows/develop.yml index 98c9397..eb68c70 100644 --- a/.gitea/workflows/develop.yml +++ b/.gitea/workflows/develop.yml @@ -19,6 +19,7 @@ jobs: - run: npm install - run: npm run build # - run: npm run create:ast + - run: apt-get update && apt-get install -y rsync - name: Create private key run: | echo "${{ secrets.ACT_RUNNER_KEY }}" > /tmp/act_runner_key