File tree Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Expand file tree Collapse file tree 1 file changed +21
-2
lines changed Original file line number Diff line number Diff line change 8
8
- reopened
9
9
10
10
jobs :
11
- build-and-deploy :
11
+ build :
12
12
runs-on : ubuntu-latest
13
13
steps :
14
14
- name : Checkout phd
46
46
- name : Render xhtml
47
47
run : |
48
48
php phd/render.php --docbook doc-base/.manual.xml --package PHP --format xhtml
49
- cat output/php-chunked-xhtml/index.html
49
+
50
+ - name : Upload static files as artifact
51
+ id : deployment
52
+ uses : actions/upload-pages-artifact@v3
53
+ with :
54
+ path : output/php-chunked-xhtml/
55
+
56
+ deploy :
57
+ permissions :
58
+ pages : write
59
+ id-token : write
60
+ environment :
61
+ name : github-pages
62
+ url : ${{ steps.deployment.outputs.page_url }}
63
+ runs-on : ubuntu-latest
64
+ needs : build
65
+ steps :
66
+ - name : Deploy to GitHub Pages
67
+ id : deployment
68
+ uses : actions/deploy-pages@v4
You can’t perform that action at this time.
0 commit comments