From 0c65efee06bf5f1af8dc59a03a31346cc68dd1bb Mon Sep 17 00:00:00 2001 From: wylab Date: Sat, 14 Feb 2026 03:49:26 +0100 Subject: [PATCH] ci: remove deploy workflow, replaced by Watchtower Auto-deploy is now handled by Watchtower on Unraid, which polls for new images every 5 minutes for labeled containers. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/deploy.yml | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml deleted file mode 100644 index 3068a79..0000000 --- a/.github/workflows/deploy.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Deploy Nanobot - -on: - workflow_dispatch: - -jobs: - deploy: - runs-on: [self-hosted, linux-amd64] - timeout-minutes: 5 - steps: - - name: Pull latest image and restart container - env: - UNRAID_PASS: ${{ secrets.UNRAID_PASS }} - run: | - sshpass -p "$UNRAID_PASS" ssh -o StrictHostKeyChecking=no -p 23 root@192.168.1.50 \ - "docker pull git.wylab.me/wylab/nanobot:latest && docker restart nanobot"