From 85e38bc3ec5a85431d66b9afdf278abc6907fb46 Mon Sep 17 00:00:00 2001 From: Nick Date: Sat, 27 Dec 2025 18:13:27 +1300 Subject: [PATCH] Remove worker restart step from CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rolling release from template update is fast enough (~1 min). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .gitea/workflows/build.yaml | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index 8624833..f27fe05 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -50,17 +50,3 @@ jobs: -H "Authorization: Bearer ${{ secrets.RUNPOD_API_KEY }}" \ -H "Content-Type: application/json" \ -d '{"imageName": "flybynight69420/comfyui-serverless:latest"}' - - - name: Restart RunPod Workers - run: | - curl -s -X POST "https://api.runpod.io/graphql?api_key=${{ secrets.RUNPOD_API_KEY }}" \ - -H "Content-Type: application/json" \ - -d '{ - "query": "mutation { saveEndpoint(input: { id: \"${{ secrets.RUNPOD_ENDPOINT_ID }}\", name: \"comfyui-serverless\", workersMin: 0, workersMax: 0 }) { id } }" - }' - sleep 5 - curl -s -X POST "https://api.runpod.io/graphql?api_key=${{ secrets.RUNPOD_API_KEY }}" \ - -H "Content-Type: application/json" \ - -d '{ - "query": "mutation { saveEndpoint(input: { id: \"${{ secrets.RUNPOD_ENDPOINT_ID }}\", name: \"comfyui-serverless\", workersMin: 0, workersMax: 1 }) { id } }" - }'