From 18d5c494ae0b0e2af4e66b3990b5702e4541a8a8 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 15 May 2026 06:40:02 -0400 Subject: [PATCH] =?UTF-8?q?Remove=20Gitea=20Action=20workflow=20=E2=80=94?= =?UTF-8?q?=20replaced=20by=20systemd=20timer?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitea/workflows/tangle.yaml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .gitea/workflows/tangle.yaml diff --git a/.gitea/workflows/tangle.yaml b/.gitea/workflows/tangle.yaml deleted file mode 100644 index c90e6c0..0000000 --- a/.gitea/workflows/tangle.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: Tangle and Deploy -on: [push] - -jobs: - tangle: - runs-on: debian-latest - steps: - - name: Checkout - run: | - apt-get update -qq && apt-get install -y -qq git docker.io 2>&1 | tail -1 - mkdir -p /workspace - git clone --depth 1 \ - http://amr:ef7dbcf8e7d4602ef5baaebacbe294723a0b45cf@10.10.10.201:3001/amr/infrastructure.git \ - /workspace/infrastructure - - - name: Tangle - run: | - docker run --rm \ - -v /:/host \ - -v /workspace/infrastructure:/workspace:ro \ - debian:stable-slim \ - bash -c "cp -r /workspace /host/tmp/infra-tangle && chroot /host /usr/local/bin/tangle-deploy /tmp/infra-tangle" - - - name: Restart services - run: | - docker run --rm \ - -v /:/host \ - debian:stable-slim \ - bash -c "chroot /host bash -c 'cd /docker/compose && docker compose up -d traefik 2>&1'"