🐞 Build images on self-hosted runner

I went to the trouble of building a GitHub Actions self-hosted runner,
so why not use it?
This commit is contained in:
Brian Cunnie
2025-01-20 06:27:46 -08:00
parent a9d99eb6b5
commit 47dbcd5e28
3 changed files with 3 additions and 3 deletions

View File

@@ -10,7 +10,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v4

View File

@@ -11,7 +11,7 @@ on:
jobs:
build:
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Checkout code
uses: actions/checkout@v4

View File

@@ -8,7 +8,7 @@ on:
jobs:
build-and-push:
runs-on: ubuntu-latest
runs-on: self-hosted
steps:
- name: Checkout repository
uses: actions/checkout@v4