Skip to content

Commit 7080d56

Browse files
committed
ci: use platform-runner label
1 parent 63c1e86 commit 7080d56

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
# Build job - runs first and saves cache
2525
build:
2626
name: Build
27-
runs-on: self-hosted
27+
runs-on: platform-runner
2828
steps:
2929
- name: Free disk space
3030
run: |
@@ -47,7 +47,7 @@ jobs:
4747
# Clippy - runs after build to use cache
4848
clippy:
4949
name: Clippy
50-
runs-on: self-hosted
50+
runs-on: platform-runner
5151
needs: build
5252
steps:
5353
- name: Free disk space
@@ -74,7 +74,7 @@ jobs:
7474
# Test job - runs after build to use cache
7575
test:
7676
name: Test
77-
runs-on: self-hosted
77+
runs-on: platform-runner
7878
needs: build
7979
permissions:
8080
contents: write
@@ -135,7 +135,7 @@ jobs:
135135
# Docker build - after tests pass
136136
docker:
137137
name: Build & Push Docker
138-
runs-on: self-hosted
138+
runs-on: platform-runner
139139
needs: [clippy, test]
140140
permissions:
141141
contents: read
@@ -185,7 +185,7 @@ jobs:
185185
# Release - only on tags
186186
release:
187187
name: Release
188-
runs-on: self-hosted
188+
runs-on: platform-runner
189189
needs: [clippy, test, docker]
190190
if: startsWith(github.ref, 'refs/tags/v')
191191
permissions:

0 commit comments

Comments
 (0)