From ccbb1f10e1d381a8fc63ddd01fa015f63c3e64c9 Mon Sep 17 00:00:00 2001 From: Arthur Dodin <52950784+tuturd@users.noreply.github.com> Date: Wed, 9 Sep 2026 11:37:08 +0200 Subject: [PATCH] feat: change runner from self-hosted to sia-autoscale-runners --- .github/workflows/ci.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 698b929..8cdf5e2 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -16,7 +16,7 @@ env: jobs: lint-api: - runs-on: self-hosted + runs-on: sia-autoscale-runners steps: - name: Checkout repository uses: actions/checkout@v5 @@ -42,7 +42,7 @@ jobs: run: pnpm run lint lint-front: - runs-on: self-hosted + runs-on: sia-autoscale-runners steps: - name: Checkout repository uses: actions/checkout@v5 @@ -68,7 +68,7 @@ jobs: run: pnpm run lint build-api: - runs-on: self-hosted + runs-on: sia-autoscale-runners if: github.event_name == 'pull_request' || github.event_name == 'push' needs: - lint-api @@ -97,7 +97,7 @@ jobs: run: pnpm run build-test build-front: - runs-on: self-hosted + runs-on: sia-autoscale-runners if: github.event_name == 'pull_request' || github.event_name == 'push' needs: - lint-front @@ -126,7 +126,7 @@ jobs: run: pnpm run build deploy-api: - runs-on: self-hosted + runs-on: sia-autoscale-runners if: github.event_name == 'push' && (github.ref == 'refs/heads/dev' || startswith(github.ref, 'refs/tags/v')) environment: ${{ startswith(github.ref, 'refs/tags/') && 'production' || 'development' }} needs: @@ -156,7 +156,7 @@ jobs: ${{ startswith(github.ref, 'refs/tags/') && format('{0}/integration/api:prod', secrets.REGISTRY_URL) || '' }} deploy-front: - runs-on: self-hosted + runs-on: sia-autoscale-runners if: github.event_name == 'push' && (github.ref == 'refs/heads/dev' || startswith(github.ref, 'refs/tags/v')) environment: ${{ startswith(github.ref, 'refs/tags/') && 'production' || 'development' }} needs: