Skip to content

Commit 05c4e59

Browse files
committed
ci: migrate to self-hosted runners
1 parent c82e357 commit 05c4e59

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ env:
1717
jobs:
1818
test:
1919
name: Test
20-
runs-on: ubuntu-latest
20+
runs-on: [self-hosted, Linux, X64]
2121
strategy:
2222
matrix:
2323
python-version: ["3.10", "3.11", "3.12", "3.13"]
@@ -60,7 +60,7 @@ jobs:
6060
docker-build:
6161
name: Build and Push Docker Image
6262
needs: test
63-
runs-on: ubuntu-latest
63+
runs-on: [self-hosted, Linux, X64]
6464
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' || startsWith(github.ref, 'refs/tags/v'))
6565
permissions:
6666
contents: read
@@ -107,7 +107,7 @@ jobs:
107107
build-package:
108108
name: Build Python Package
109109
needs: test
110-
runs-on: ubuntu-latest
110+
runs-on: [self-hosted, Linux, X64]
111111
if: startsWith(github.ref, 'refs/tags/v')
112112

113113
steps:
@@ -152,7 +152,7 @@ jobs:
152152
release:
153153
name: Create GitHub Release
154154
needs: [test, build-package, docker-build]
155-
runs-on: ubuntu-latest
155+
runs-on: [self-hosted, Linux, X64]
156156
if: startsWith(github.ref, 'refs/tags/v')
157157
permissions:
158158
contents: write

0 commit comments

Comments
 (0)