From fe6dbc8c1689be17644ec604c9f36c9b1dd55aad Mon Sep 17 00:00:00 2001 From: Maxim Smakouz Date: Wed, 20 Mar 2024 18:25:44 +0200 Subject: [PATCH] Create docs directory --- .github/workflows/docs.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/docs.yml b/.github/workflows/docs.yml index 9d27c5d58..8c3dab817 100644 --- a/.github/workflows/docs.yml +++ b/.github/workflows/docs.yml @@ -19,6 +19,9 @@ jobs: with: node-version: 20 + - name: Create documentation directory + run: mkdir -p docs/api + - name: Cache phpDocumentor build files id: phpdocumentor-cache uses: actions/cache@v3 @@ -28,7 +31,7 @@ jobs: restore-keys: | ${{ runner.os }}-phpdocumentor- - - name: Build with documentation + - name: Build with phpDocumentor run: docker run --rm --volume "$(pwd):/data" phpdoc/phpdoc:3.4 -vv --template default - name: Upload documentation