fix: 部署workflow使用ubuntu-latest runner label #17

Merged
xiaoxia merged 1 commits from fix/deploy-runner-label into main 2026-06-26 18:44:32 +08:00
+4 -4
View File
@@ -9,7 +9,7 @@ on:
jobs:
deploy-staging:
name: Deploy Staging
runs-on: runtime-builder
runs-on: ubuntu-latest
if: github.ref_name == 'main' || github.ref_name == 'develop' || startsWith(github.ref_name, 'feature/')
steps:
@@ -119,7 +119,7 @@ REMOTE_DEPLOY
build-production-runtime-images:
name: Build Production Runtime Images
runs-on: runtime-builder
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
steps:
@@ -195,7 +195,7 @@ REMOTE_DEPLOY
deploy-production:
name: Deploy Production
runs-on: runtime-builder
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
needs: build-production-runtime-images
@@ -268,7 +268,7 @@ REMOTE_DEPLOY
production-e2e:
name: Production Browser E2E
runs-on: runtime-builder
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v')
needs: deploy-production