File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -115,7 +115,14 @@ jobs:
115115 uses : actions/download-artifact@v4
116116 with :
117117 name : docs-versions
118- path : app/utils
118+ path : app/utils/
119+
120+ - name : Verify files before deploy
121+ run : |
122+ echo "=== Checking generated-docs structure ==="
123+ ls -la generated-docs/
124+ echo "=== Checking versions.ts ==="
125+ cat app/utils/versions.ts
119126
120127 - uses : forge-42/fly-deploy@v1.0.0-rc.2
121128 id : deploy
@@ -124,8 +131,7 @@ jobs:
124131 FLY_API_TOKEN : ${{ secrets.FLY_API_TOKEN }}
125132 FLY_REGION : ${{ vars.FLY_REGION }}
126133 with :
127- # FIXME:MONOREPO If docs are in a subdirectory, change this to: docs
128- # workspace_name: .
134+ # FIXME:MONOREPO If docs are in a subdirectory, add: workspace_name: docs
129135 app_name : ${{ github.event.repository.name }}-${{ github.event.number }}
130136 use_isolated_workspace : true
131137 env_vars : |
Original file line number Diff line number Diff line change @@ -24,6 +24,13 @@ RUN pnpm install --prod=false
2424
2525COPY . .
2626
27+ # Debug: Verify generated-docs exists
28+ RUN echo "=== Checking for generated-docs ===" && \
29+ ls -la generated-docs/ || echo "ERROR: generated-docs not found!" && \
30+ ls -la generated-docs/current/ || echo "ERROR: generated-docs/current not found!" && \
31+ echo "=== Checking versions.ts ===" && \
32+ cat app/utils/versions.ts || echo "ERROR: versions.ts not found!"
33+
2734RUN pnpm run build
2835
2936# Prune dev deps
You can’t perform that action at this time.
0 commit comments