Skip to content

Commit 64f5e14

Browse files
author
abrulic
committed
check
1 parent 51edfdf commit 64f5e14

2 files changed

Lines changed: 16 additions & 3 deletions

File tree

.github/workflows/ci.yml

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

Dockerfile

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,13 @@ RUN pnpm install --prod=false
2424

2525
COPY . .
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+
2734
RUN pnpm run build
2835

2936
# Prune dev deps

0 commit comments

Comments
 (0)