Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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
Expand Down Expand Up @@ -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:
Expand Down Expand Up @@ -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:
Expand Down
Loading