Skip to content

Commit 5d7afe4

Browse files
committed
fix(deploy): adjust base path for new build output
1 parent 4a8c9ea commit 5d7afe4

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,14 @@ jobs:
3232
- name: Verify Build Output
3333
run: |
3434
echo "Inspecting build directory..."
35-
ls -la dist
36-
grep -r PUBLIC_SPREADSHEET_URL dist || echo "PUBLIC_SPREADSHEET_URL not found in build output"
35+
ls -la dist/client
36+
grep -r PUBLIC_SPREADSHEET_URL dist/client || echo "PUBLIC_SPREADSHEET_URL not found in build output"
37+
38+
# Upload artifact per il deploy
39+
- name: Upload artifact
40+
uses: actions/upload-pages-artifact@v2
41+
with:
42+
path: dist/client
3743

3844
deploy:
3945
needs: build

0 commit comments

Comments
 (0)