We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86ab57b commit f6f7649Copy full SHA for f6f7649
.github/workflows/tests.yml
@@ -50,3 +50,14 @@ jobs:
50
with:
51
name: Documentation PDF
52
path: ${{ github.workspace }}/documentation/*.pdf
53
+
54
+ build-user-docs-website:
55
+ name: 'Build user docs for website'
56
+ runs-on: ubuntu-latest
57
+ steps:
58
+ - uses: actions/checkout@v4
59
+ - name: Build documentation for website
60
+ working-directory: ${{ github.workspace }}/documentation
61
+ run: |
62
+ mkdir build_website
63
+ ./create_pdf.sh build_website
documentation/create_docs.sh
@@ -1,7 +1,7 @@
1
#!/bin/bash
2
3
# set this to the correct path
4
-path="/var/www/phpbb.com/htdocs/support/documentation/3.3"
+path=${1:-'/var/www/phpbb.com/htdocs/support/documentation/3.3'}
5
6
echo "Removing build directory"
7
rm -rf build
0 commit comments