You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
run: npm run build --configuration production --output-path=docs --base-href="/${{ github.event.repository.name }}/"
34
+
run: |
35
+
npm run build --configuration production --output-path=docs --base-href="/${{ github.event.repository.name }}/" 2>&1 | tee deployment_logs/build_log_${{ steps.timestamp.outputs.timestamp }}.txt
28
36
29
37
- name: Add .nojekyll file
30
38
run: touch docs/.nojekyll
31
39
32
40
- name: Deploy to GitHub Pages
41
+
id: deploy
33
42
uses: JamesIves/github-pages-deploy-action@v4
34
43
with:
35
44
folder: docs
36
45
branch: gh-pages
37
46
clean: true
47
+
48
+
- name: Log deployment result
49
+
run: |
50
+
echo "Deployment completed at $(date)" >> deployment_logs/deploy_summary_${{ steps.timestamp.outputs.timestamp }}.txt
0 commit comments