Fix runs-on in ci.yml
Some checks failed
CI/CD Pipeline (Fully Isolated DinD) / Run Tests (DinD) (push) Failing after 17s
CI/CD Pipeline (Fully Isolated DinD) / Build and Push Docker Images (DinD) (push) Has been skipped
CI/CD Pipeline (Fully Isolated DinD) / Deploy to Production (push) Has been skipped

This commit is contained in:
continuist 2025-07-05 11:49:26 -04:00
parent 667d14c052
commit cfaac6b308

View file

@ -14,7 +14,7 @@ jobs:
# Job 1: Testing - Uses DinD with multiple containers for comprehensive testing # Job 1: Testing - Uses DinD with multiple containers for comprehensive testing
test: test:
name: Run Tests (DinD) name: Run Tests (DinD)
runs-on: [self-hosted, ci:host] runs-on: ci
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
steps: steps:
@ -122,7 +122,7 @@ jobs:
build-and-push: build-and-push:
name: Build and Push Docker Images (DinD) name: Build and Push Docker Images (DinD)
needs: [test] needs: [test]
runs-on: [self-hosted, ci:host] runs-on: ci
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
steps: steps:
@ -182,7 +182,7 @@ jobs:
deploy: deploy:
name: Deploy to Production name: Deploy to Production
needs: build-and-push needs: build-and-push
runs-on: [self-hosted, prod] runs-on: prod
if: github.ref == 'refs/heads/main' if: github.ref == 'refs/heads/main'
steps: steps: