We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a8c9ea commit 5d7afe4Copy full SHA for 5d7afe4
.github/workflows/deploy.yml
@@ -32,8 +32,14 @@ jobs:
32
- name: Verify Build Output
33
run: |
34
echo "Inspecting build directory..."
35
- ls -la dist
36
- grep -r PUBLIC_SPREADSHEET_URL dist || echo "PUBLIC_SPREADSHEET_URL not found in build output"
+ ls -la dist/client
+ 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
43
44
deploy:
45
needs: build
0 commit comments