From 1b6c95bf95cfbf07499e63042fd3253b257e95c4 Mon Sep 17 00:00:00 2001 From: Matt DiMeglio Date: Mon, 19 Jan 2026 17:15:11 -0500 Subject: [PATCH] try runners --- .github/workflows/api-container.yml | 2 +- .github/workflows/api-deploy-nonprod.yml | 6 +++--- .github/workflows/api-deploy-prod.yml | 6 +++--- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/api-container.yml b/.github/workflows/api-container.yml index 82b69ef..f62c427 100644 --- a/.github/workflows/api-container.yml +++ b/.github/workflows/api-container.yml @@ -18,7 +18,7 @@ on: - api/** jobs: determine-workflow: - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' outputs: workflow_type: ${{ steps.workflow.outputs.workflow_type }} workflow_envs: ${{ steps.workflow.outputs.workflow_envs }} diff --git a/.github/workflows/api-deploy-nonprod.yml b/.github/workflows/api-deploy-nonprod.yml index 983aa0d..4270f2f 100644 --- a/.github/workflows/api-deploy-nonprod.yml +++ b/.github/workflows/api-deploy-nonprod.yml @@ -26,7 +26,7 @@ on: COOLIFY_TOKEN: {} jobs: check-inputs: - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' environment: ${{ inputs.environments }} steps: - name: Check secrets present @@ -60,7 +60,7 @@ jobs: needs: check-inputs if: needs.check-inputs.result == 'success' && inputs.workflow_type != 'release' environment: ${{ inputs.environments }} - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' permissions: contents: read packages: write @@ -83,7 +83,7 @@ jobs: needs: build if: needs.build.result == 'success' && inputs.workflow_type != 'release' environment: ${{ inputs.environments }} - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' permissions: contents: read packages: write diff --git a/.github/workflows/api-deploy-prod.yml b/.github/workflows/api-deploy-prod.yml index 53f2bc4..fc13d6d 100644 --- a/.github/workflows/api-deploy-prod.yml +++ b/.github/workflows/api-deploy-prod.yml @@ -26,7 +26,7 @@ on: COOLIFY_TOKEN: {} jobs: check-inputs: - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' environment: ${{ inputs.environments }} steps: - name: Check secrets present @@ -60,7 +60,7 @@ jobs: needs: check-inputs if: needs.check-inputs.result == 'success' && inputs.workflow_type == 'release' environment: ${{ inputs.environments }} - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' permissions: contents: read packages: write @@ -83,7 +83,7 @@ jobs: needs: build if: needs.build.result == 'success' && inputs.workflow_type == 'release' environment: ${{ inputs.environments }} - runs-on: ['self-hosted','pi'] + runs-on: 'ubuntu-latest' permissions: contents: read packages: write