Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1717,9 +1717,13 @@ jobs:
env:
DEPENDENCY_CACHE_KEY: ${{ needs.job_setup.outputs.dependency_cache_key }}
- name: Build Admin
env:
GHOST_CDN_URL: https://assets.ghost.io/admin-forward/
run: yarn nx run admin:build
- name: Validate admin build
run: |
test -f apps/admin/dist/index.html
grep -q '"./assets/' apps/admin/dist/index.html
grep -q 'ghost-cdn-url' apps/admin/dist/index.html
echo "Admin build validated: relative paths, ghost-cdn-url meta present"
- name: Upload build artifact
id: upload-artifacts
uses: actions/upload-artifact@v4
Expand Down
Loading