fix(ci): deploy docs with Netlify CLI monorepo filter (#6115)

This commit is contained in:
Alireza 2026-06-29 12:55:01 -04:00 committed by GitHub
parent 4cdcd34a33
commit 71c50db9b5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -117,8 +117,9 @@ jobs:
# would otherwise pick up the repo-root netlify.toml (configured for the
# main viewer app) and build the wrong project. --dir is resolved
# relative to the repo root (the netlify.toml base), not the cwd, so it
# must be the full path to the prebuilt docs output.
run: npx netlify-cli deploy --dir=platform/docs/build --prod --no-build
# must be the full path to the prebuilt docs output. --filter selects
# the ohif-docs package so Netlify CLI does not abort on monorepo detection.
run: npx netlify-cli deploy --filter ohif-docs --dir=platform/docs/build --prod --no-build
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_AUTH_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}