From 8bd5ed3e053b65d327fe5ffa2508b2c0218ffe7b Mon Sep 17 00:00:00 2001 From: Clemens Hering Date: Sun, 9 Nov 2025 14:43:22 +0100 Subject: [PATCH] test local clone --- .gitea/workflows/deploy.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy.yaml b/.gitea/workflows/deploy.yaml index 2a9381a..67e977a 100644 --- a/.gitea/workflows/deploy.yaml +++ b/.gitea/workflows/deploy.yaml @@ -19,12 +19,13 @@ jobs: build_and_deploy: runs-on: linux container: - image: alpine:3.20 - options: --entrypoint /bin/sh --privileged + image: ubuntu:latest + options: --entrypoint /bin/sh steps: - name: Install tools run: | - apk add --no-cache bash git openssh-client rsync podman-cli + apt-get update + apt-get install -y bash git openssh-client rsync podman-cli - name: Checkout repository run: git clone git@gitea.smb-corp.de:${{ gitea.repository }} . - name: Deploy via SSH