fix(ci): change main backend-tests to vps runner with correct checkout URL
Deploy Dashboard (Main) / Backend Tests (push) Successful in 2m44s
Deploy Dashboard (Main) / Frontend Tests (push) Failing after 6s
Deploy Dashboard (Main) / Deploy to Production (push) Has been cancelled
Deploy Dashboard (Main) / Build Main Image (push) Has been cancelled

This commit is contained in:
Gan, Jimmy
2026-07-08 22:59:14 +08:00
parent 7b39dda0c8
commit 270e90cab5
+2 -2
View File
@@ -14,7 +14,7 @@ concurrency:
jobs: jobs:
backend-tests: backend-tests:
name: Backend Tests name: Backend Tests
runs-on: ubuntu-latest runs-on: vps
env: env:
SECRET_KEY: test-secret-key-for-ci-environment-32chars-minimum SECRET_KEY: test-secret-key-for-ci-environment-32chars-minimum
@@ -22,7 +22,7 @@ jobs:
- name: Checkout repository - name: Checkout repository
run: | run: |
if [ ! -d .git ]; then if [ ! -d .git ]; then
git clone --depth=1 "http://172.21.0.1:3300/${GITHUB_REPOSITORY}.git" . git clone --depth=1 --branch "$GITHUB_REF_NAME" "http://100.78.131.124:3300/${GITHUB_REPOSITORY}.git" .
fi fi
- name: Setup Python - name: Setup Python