From cfaac6b308e43aaf7930a0c2f6ac9a027cfbd18f Mon Sep 17 00:00:00 2001 From: continuist Date: Sat, 5 Jul 2025 11:49:26 -0400 Subject: [PATCH] Fix runs-on in ci.yml --- .forgejo/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.forgejo/workflows/ci.yml b/.forgejo/workflows/ci.yml index fab5907..2e7ef89 100644 --- a/.forgejo/workflows/ci.yml +++ b/.forgejo/workflows/ci.yml @@ -14,7 +14,7 @@ jobs: # Job 1: Testing - Uses DinD with multiple containers for comprehensive testing test: name: Run Tests (DinD) - runs-on: [self-hosted, ci:host] + runs-on: ci if: github.ref == 'refs/heads/main' steps: @@ -122,7 +122,7 @@ jobs: build-and-push: name: Build and Push Docker Images (DinD) needs: [test] - runs-on: [self-hosted, ci:host] + runs-on: ci if: github.ref == 'refs/heads/main' steps: @@ -182,7 +182,7 @@ jobs: deploy: name: Deploy to Production needs: build-and-push - runs-on: [self-hosted, prod] + runs-on: prod if: github.ref == 'refs/heads/main' steps: