Skip to content

Commit 9329bde

Browse files
committed
Move trigger
1 parent 191d887 commit 9329bde

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)