Skip to content

Commit 9efff85

Browse files
committed
:octocat: move phpdoc build path
1 parent 15dcc01 commit 9efff85

File tree

3 files changed

+3
-19
lines changed

3 files changed

+3
-19
lines changed

.github/workflows/tests.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -67,17 +67,14 @@ jobs:
6767
tools: phpDocumentor
6868
extensions: fileinfo, gd, imagick, json, mbstring
6969

70-
- name: "Delete Markdown files"
71-
run: rm ./docs/*.md
72-
7370
- name: "Build Docs"
7471
run: phpdoc --config=phpdoc.xml.dist
7572

7673
- name: "Publish Docs to gh-pages"
7774
uses: JamesIves/github-pages-deploy-action@v4
7875
with:
7976
branch: gh-pages
80-
folder: docs
77+
folder: .build/phpdocs
8178
clean: true
8279

8380

docs/Readme.md

-13
This file was deleted.

phpdoc.xml.dist

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
<?xml version="1.0" encoding="UTF-8" ?>
22
<phpdoc>
33
<parser>
4-
<target>docs</target>
4+
<target>.build/phpdocs</target>
55
<encoding>utf8</encoding>
66
<markers>
77
<item>TODO</item>
88
</markers>
99
</parser>
1010
<transformer>
11-
<target>docs</target>
11+
<target>.build/phpdocs</target>
1212
</transformer>
1313
<files>
1414
<directory>src</directory>

0 commit comments

Comments
 (0)