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

This commit is contained in:
Eric Gullickson
2025-12-29 21:13:19 -06:00
parent eaab8c061a
commit dfff25e652
2 changed files with 9 additions and 9 deletions

View File

@@ -74,7 +74,7 @@ jobs:
# ============================================ # ============================================
deploy-prod: deploy-prod:
name: Deploy to Production name: Deploy to Production
runs-on: mvp-prod runs-on: prod
needs: validate needs: validate
env: env:
TARGET_STACK: ${{ needs.validate.outputs.target_stack }} TARGET_STACK: ${{ needs.validate.outputs.target_stack }}
@@ -155,7 +155,7 @@ jobs:
# ============================================ # ============================================
verify-prod: verify-prod:
name: Verify Production name: Verify Production
runs-on: mvp-prod runs-on: prod
needs: [validate, deploy-prod] needs: [validate, deploy-prod]
env: env:
TARGET_STACK: ${{ needs.validate.outputs.target_stack }} TARGET_STACK: ${{ needs.validate.outputs.target_stack }}
@@ -196,7 +196,7 @@ jobs:
# ============================================ # ============================================
rollback: rollback:
name: Auto Rollback name: Auto Rollback
runs-on: mvp-prod runs-on: prod
needs: [validate, deploy-prod, verify-prod] needs: [validate, deploy-prod, verify-prod]
if: failure() if: failure()
steps: steps:
@@ -222,7 +222,7 @@ jobs:
# ============================================ # ============================================
notify-success: notify-success:
name: Notify Success name: Notify Success
runs-on: mvp-prod runs-on: prod
needs: [validate, verify-prod] needs: [validate, verify-prod]
if: success() if: success()
steps: steps:
@@ -243,7 +243,7 @@ jobs:
# ============================================ # ============================================
notify-failure: notify-failure:
name: Notify Failure name: Notify Failure
runs-on: mvp-prod runs-on: prod
needs: [validate, deploy-prod, verify-prod, rollback] needs: [validate, deploy-prod, verify-prod, rollback]
if: failure() if: failure()
steps: steps:

View File

@@ -23,7 +23,7 @@ jobs:
# ============================================ # ============================================
build: build:
name: Build Images name: Build Images
runs-on: mvp-build runs-on: stage
outputs: outputs:
backend_image: ${{ steps.tags.outputs.backend_image }} backend_image: ${{ steps.tags.outputs.backend_image }}
frontend_image: ${{ steps.tags.outputs.frontend_image }} frontend_image: ${{ steps.tags.outputs.frontend_image }}
@@ -139,7 +139,7 @@ jobs:
# ============================================ # ============================================
verify-staging: verify-staging:
name: Verify Staging name: Verify Staging
runs-on: mvp-build runs-on: stage
needs: [build, deploy-staging] needs: [build, deploy-staging]
steps: steps:
- name: Checkout code - name: Checkout code
@@ -193,7 +193,7 @@ jobs:
# ============================================ # ============================================
notify-staging-ready: notify-staging-ready:
name: Notify Staging Ready name: Notify Staging Ready
runs-on: mvp-build runs-on: stage
needs: [build, verify-staging] needs: [build, verify-staging]
steps: steps:
- name: Checkout code - name: Checkout code
@@ -215,7 +215,7 @@ jobs:
# ============================================ # ============================================
notify-staging-failure: notify-staging-failure:
name: Notify Staging Failure name: Notify Staging Failure
runs-on: mvp-build runs-on: stage
needs: [build, deploy-staging, verify-staging] needs: [build, deploy-staging, verify-staging]
if: failure() if: failure()
steps: steps: