From 9b8f8a91312af1996344663c4f32013c976e7fd5 Mon Sep 17 00:00:00 2001 From: r_dh Date: Tue, 28 Jul 2020 13:50:41 +0200 Subject: [PATCH] ci(docfx): Added checkout step for deployment --- .github/workflows/docdeploy.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/docdeploy.yml b/.github/workflows/docdeploy.yml index c7e987e..944007a 100644 --- a/.github/workflows/docdeploy.yml +++ b/.github/workflows/docdeploy.yml @@ -33,6 +33,11 @@ jobs: needs: build runs-on: ubuntu-latest # Required by 'JamesIves/github-pages-deploy-action' steps: + - name: Checkout + uses: actions/checkout@v2.3.1 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly. + with: + persist-credentials: false + # Download the generated documentation - name: Download site artifact uses: actions/download-artifact@v1