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 328f9e6 commit 6951e68Copy full SHA for 6951e68
.github/workflows/publish-apidocs.yml
@@ -83,6 +83,19 @@ jobs:
83
- name: Build with phpDocumentor
84
run: php -d xdebug.mode=off ${{ github.workspace }}/tools/phpDocumentor run -vv -d source --target docs --cache-folder phpdoc-cache --template default --title 'Moodle PHP API'
85
86
+ - name: Count files and get disk space
87
+ run: |
88
+ echo "Total files:"
89
+ find docs -type f | wc -l
90
+
91
+ echo "Total disk space used by docs directory:"
92
+ du -sh docs
93
94
+ - name: Free disk space (Ubuntu)
95
+ uses: jlumbroso/free-disk-space@main
96
+ with:
97
+ tool-cache: false
98
99
- name: Upload artifact to GitHub Pages
100
uses: actions/upload-pages-artifact@v3
101
with:
0 commit comments