We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e26a3b8 commit b6605e9Copy full SHA for b6605e9
1 file changed
.github/workflows/deploy-userguide-latest.yml
@@ -21,12 +21,25 @@ jobs:
21
- name: Checkout
22
uses: actions/checkout@v3
23
24
+ - name: Setup PHP
25
+ uses: shivammathur/setup-php@v2
26
+ with:
27
+ php-version: '8.0'
28
+ coverage: none
29
+
30
# Build the latest User Guide
31
- name: Build with Sphinx
32
uses: ammaraskar/sphinx-action@0.4
33
with:
34
docs-folder: user_guide_src/
35
36
+ - name: Add "Edit this page" links
37
+ run: |
38
+ cd user_guide_src
39
+ # Fix permissions
40
+ sudo chown -R runner:docker build/html/
41
+ php add-edit-this-page build/html/
42
43
# Create an artifact of the html output
44
- name: Upload artifact
45
uses: actions/upload-artifact@v3
0 commit comments