From 24222b0b41e4273f67a279a3d25ac2efa6575110 Mon Sep 17 00:00:00 2001 From: Kai Date: Mon, 24 Mar 2025 17:59:49 +0800 Subject: [PATCH] chore: change runner type in test.yaml from ubuntu-latest to self-hosted for build and deploy jobs --- .github/workflows/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index e12e2b7..47ebec3 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -6,7 +6,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: self-hosted steps: - name: Checkout Code uses: http://gitea.xkkxyy.com/actions/checkout@main @@ -16,7 +16,7 @@ jobs: continue-on-error: true deploy: - runs-on: ubuntu-latest + runs-on: self-hosted needs: build steps: - name: Debug directory @@ -27,4 +27,4 @@ jobs: echo "Listing /opt/docker:" ls -l /opt - name: Deploy to Test - run: exit && cd /opt/docker + run: cd /opt/docker