File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -26,15 +26,15 @@ jobs:
2626 # ============================================
2727 test :
2828 name : Run Test Suite
29- # uses: ./.github/workflows/test.yml
29+ uses : ./.github/workflows/test.yml
3030
3131 # ============================================
3232 # Deploy to Staging
3333 # ============================================
3434 deploy-staging :
3535 name : Deploy to Staging
3636 runs-on : ubuntu-latest
37- needs : test
37+ # needs: test # Temporarily disabled for debugging
3838 if : |
3939 (github.event_name == 'push' && github.ref == 'refs/heads/main') ||
4040 (github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'staging')
@@ -241,7 +241,7 @@ jobs:
241241 deploy-production :
242242 name : Deploy to Production
243243 runs-on : ubuntu-latest
244- needs : test
244+ # needs: test # Temporarily disabled for debugging
245245 if : |
246246 (github.event_name == 'release') ||
247247 (github.event_name == 'workflow_dispatch' && github.event.inputs.environment == 'production')
You can’t perform that action at this time.
0 commit comments