From 1479b2fa9666f6578c72dabf0b7854cf6f808d71 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20M=C3=B6ller?= Date: Fri, 13 Mar 2020 10:44:58 +0100 Subject: [PATCH] Enhancement: Use actions/checkout to check out documentation --- .github/workflows/continuous-integration.yml | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index d15c9783..c1fbae9f 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -32,9 +32,17 @@ jobs: coverage: "pcov" php-version: "${{ matrix.php-version }}" - - name: "Check out PHP documentation with git" - run: sh update.sh - working-directory: "generator/doc" + - name: "Check out salathe/phpdoc-base" + uses: "actions/checkout@v2" + with: + path: "generator/doc/doc-en/doc-base" + repository: "salathe/phpdoc-base" + + - name: "Check out php/doc-en" + uses: "actions/checkout@v2" + with: + path: "generator/doc/doc-en/en" + repository: "php/doc-en" - name: "Cache dependencies installed with composer" uses: "actions/cache@v1.0.3"