fix: Gitea runner updates
Some checks failed
Deploy to Staging / Build Images (push) Failing after 7s
Deploy to Staging / Deploy to Staging (push) Has been skipped
Deploy to Staging / Verify Staging (push) Has been skipped
Deploy to Staging / Notify Staging Ready (push) Has been skipped
Deploy to Staging / Notify Staging Failure (push) Successful in 5s
Some checks failed
Deploy to Staging / Build Images (push) Failing after 7s
Deploy to Staging / Deploy to Staging (push) Has been skipped
Deploy to Staging / Verify Staging (push) Has been skipped
Deploy to Staging / Notify Staging Ready (push) Has been skipped
Deploy to Staging / Notify Staging Failure (push) Successful in 5s
This commit is contained in:
@@ -74,7 +74,7 @@ jobs:
|
||||
# ============================================
|
||||
deploy-prod:
|
||||
name: Deploy to Production
|
||||
runs-on: mvp-prod
|
||||
runs-on: prod
|
||||
needs: validate
|
||||
env:
|
||||
TARGET_STACK: ${{ needs.validate.outputs.target_stack }}
|
||||
@@ -155,7 +155,7 @@ jobs:
|
||||
# ============================================
|
||||
verify-prod:
|
||||
name: Verify Production
|
||||
runs-on: mvp-prod
|
||||
runs-on: prod
|
||||
needs: [validate, deploy-prod]
|
||||
env:
|
||||
TARGET_STACK: ${{ needs.validate.outputs.target_stack }}
|
||||
@@ -196,7 +196,7 @@ jobs:
|
||||
# ============================================
|
||||
rollback:
|
||||
name: Auto Rollback
|
||||
runs-on: mvp-prod
|
||||
runs-on: prod
|
||||
needs: [validate, deploy-prod, verify-prod]
|
||||
if: failure()
|
||||
steps:
|
||||
@@ -222,7 +222,7 @@ jobs:
|
||||
# ============================================
|
||||
notify-success:
|
||||
name: Notify Success
|
||||
runs-on: mvp-prod
|
||||
runs-on: prod
|
||||
needs: [validate, verify-prod]
|
||||
if: success()
|
||||
steps:
|
||||
@@ -243,7 +243,7 @@ jobs:
|
||||
# ============================================
|
||||
notify-failure:
|
||||
name: Notify Failure
|
||||
runs-on: mvp-prod
|
||||
runs-on: prod
|
||||
needs: [validate, deploy-prod, verify-prod, rollback]
|
||||
if: failure()
|
||||
steps:
|
||||
|
||||
@@ -23,7 +23,7 @@ jobs:
|
||||
# ============================================
|
||||
build:
|
||||
name: Build Images
|
||||
runs-on: mvp-build
|
||||
runs-on: stage
|
||||
outputs:
|
||||
backend_image: ${{ steps.tags.outputs.backend_image }}
|
||||
frontend_image: ${{ steps.tags.outputs.frontend_image }}
|
||||
@@ -139,7 +139,7 @@ jobs:
|
||||
# ============================================
|
||||
verify-staging:
|
||||
name: Verify Staging
|
||||
runs-on: mvp-build
|
||||
runs-on: stage
|
||||
needs: [build, deploy-staging]
|
||||
steps:
|
||||
- name: Checkout code
|
||||
@@ -193,7 +193,7 @@ jobs:
|
||||
# ============================================
|
||||
notify-staging-ready:
|
||||
name: Notify Staging Ready
|
||||
runs-on: mvp-build
|
||||
runs-on: stage
|
||||
needs: [build, verify-staging]
|
||||
steps:
|
||||
- name: Checkout code
|
||||
@@ -215,7 +215,7 @@ jobs:
|
||||
# ============================================
|
||||
notify-staging-failure:
|
||||
name: Notify Staging Failure
|
||||
runs-on: mvp-build
|
||||
runs-on: stage
|
||||
needs: [build, deploy-staging, verify-staging]
|
||||
if: failure()
|
||||
steps:
|
||||
|
||||
Reference in New Issue
Block a user