Skip to content

Commit a2fc5ba

Browse files
committed
updating github runners
1 parent 45a6d5d commit a2fc5ba

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

.github/workflows/build-test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@ on:
99
jobs:
1010
test-backend:
1111
name: Test Go Backend
12-
runs-on: home-server-runner
13-
12+
runs-on: [self-hosted, home]
1413
steps:
1514
- name: Checkout code
1615
uses: actions/checkout@v4
@@ -51,7 +50,9 @@ jobs:
5150

5251
test-frontend:
5352
name: Test Frontend
54-
runs-on: home-server-runner
53+
runs-on: [self-hosted, home]
54+
55+
5556

5657
defaults:
5758
run:
@@ -85,7 +86,7 @@ jobs:
8586

8687
integration-test:
8788
name: Integration Tests
88-
runs-on: home-server-runner
89+
runs-on: [self-hosted, home]
8990
needs: [test-backend, test-frontend]
9091

9192
services:

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ env:
1212
jobs:
1313
build-and-push:
1414
name: Build and Push to GHCR
15-
runs-on: home-server-runner
15+
runs-on: [self-hosted, home]
1616
permissions:
1717
contents: read
1818
packages: write
@@ -55,7 +55,7 @@ jobs:
5555

5656
build-frontend-image:
5757
name: Build Frontend Container
58-
runs-on: home-server-runner
58+
runs-on: [self-hosted, home]
5959
permissions:
6060
contents: read
6161
packages: write
@@ -98,7 +98,7 @@ jobs:
9898

9999
notify-deployment:
100100
name: Notify Deployment
101-
runs-on: home-server-runner
101+
runs-on: [self-hosted, home]
102102
needs: [build-and-push, build-frontend-image]
103103
if: always()
104104

0 commit comments

Comments
 (0)