Skip to content

Commit 51b95ec

Browse files
committed
Deploy API Reference into a subdirectory with the current branch name
1 parent 0e689c5 commit 51b95ec

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/apiref.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
run: "composer install --no-interaction --no-progress"
3737

3838
- name: "Run ApiGen"
39-
run: "apigen/vendor/bin/apigen -c apigen/apigen.neon --output docs -- src"
39+
run: "apigen/vendor/bin/apigen -c apigen/apigen.neon --output docs/${{ github.ref_name }} -- src"
4040

4141
- name: "Copy favicon"
4242
run: "cp apigen/favicon.png docs/favicon.png"

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ For the complete list of supported PHPDoc features check out PHPStan documentati
1313

1414
* [PHPDoc Basics](https://phpstan.org/writing-php-code/phpdocs-basics) (list of PHPDoc tags)
1515
* [PHPDoc Types](https://phpstan.org/writing-php-code/phpdoc-types) (list of PHPDoc types)
16-
* [phpdoc-parser API Reference](https://phpstan.github.io/phpdoc-parser/namespace-PHPStan.PhpDocParser.html) with all the AST node types etc.
16+
* [phpdoc-parser API Reference](https://phpstan.github.io/phpdoc-parser/1.23.x/namespace-PHPStan.PhpDocParser.html) with all the AST node types etc.
1717

1818
This parser also supports parsing [Doctrine Annotations](https://github.com/doctrine/annotations). The AST nodes live in the [PHPStan\PhpDocParser\Ast\PhpDoc\Doctrine namespace](https://phpstan.github.io/phpdoc-parser/namespace-PHPStan.PhpDocParser.Ast.PhpDoc.Doctrine.html). The support needs to be turned on by setting `bool $parseDoctrineAnnotations` to `true` in `Lexer` and `PhpDocParser` class constructors.
1919

0 commit comments

Comments
 (0)