File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -173,14 +173,6 @@ jobs:
173173 provenance : false
174174 sbom : false
175175
176- # Deploy Trigger.dev (after ECR images are pushed)
177- trigger-deploy :
178- name : Deploy Trigger.dev
179- needs : build-amd64
180- if : github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging')
181- uses : ./.github/workflows/trigger-deploy.yml
182- secrets : inherit
183-
184176 # Create GHCR multi-arch manifests (only for main, after both builds)
185177 create-ghcr-manifests :
186178 name : Create GHCR Manifests
@@ -220,7 +212,15 @@ jobs:
220212 "${IMAGE_BASE}:${{ github.sha }}-arm64"
221213 docker manifest push "${IMAGE_BASE}:${{ github.sha }}"
222214
223- # Process docs embeddings (only needs ECR images from build-amd64)
215+ # Deploy Trigger.dev (after ECR images are pushed, runs in parallel with process-docs)
216+ trigger-deploy :
217+ name : Deploy Trigger.dev
218+ needs : build-amd64
219+ if : github.event_name == 'push' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/staging')
220+ uses : ./.github/workflows/trigger-deploy.yml
221+ secrets : inherit
222+
223+ # Process docs embeddings (after ECR images are pushed, runs in parallel with trigger-deploy)
224224 process-docs :
225225 name : Process Docs
226226 needs : build-amd64
You can’t perform that action at this time.
0 commit comments