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 9c98ea2 commit a39a75aCopy full SHA for a39a75a
.github/workflows/branch-preview.yaml
@@ -47,11 +47,17 @@ jobs:
47
run: |
48
php phd/render.php --docbook doc-base/.manual.xml --package PHP --format xhtml
49
50
+ - name: Add Pull Request Path
51
+ run: |
52
+ PR_NUMBER=${{ github.event.pull_request.number }}
53
+ mkdir -p ./output/pr/$PR_NUMBER
54
+ mv ./output/php-chunked-xhtml/* ./output/pr/$PR_NUMBER/
55
+
56
- name: Upload static files as artifact
57
id: deployment
58
uses: actions/upload-pages-artifact@v3
59
with:
- path: output/php-chunked-xhtml/
60
+ path: ./output/
61
62
deploy:
63
permissions:
0 commit comments