We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35a1700 commit 35b39b4Copy full SHA for 35b39b4
.github/workflows/site-deploy.yml
@@ -42,7 +42,11 @@ jobs:
42
- name: Build Maven Site
43
run: mvn -B -U -e -V clean site
44
45
+ - name: List site output
46
+ run: ls -la target/site || true
47
+
48
- name: Upload Pages artifact
49
+ if: ${{ always() }}
50
uses: actions/upload-pages-artifact@v3
51
with:
52
path: target/site
@@ -57,3 +61,7 @@ jobs:
57
61
- name: Deploy to GitHub Pages
58
62
id: deployment
59
63
uses: actions/deploy-pages@v4
64
65
+ - name: Show deployed URL
66
67
+ run: echo "Page URL: ${{ steps.deployment.outputs.page_url }}"
0 commit comments