From 0d5f253f0ac97e53fe66e6bacd7c5765dccc8c0b Mon Sep 17 00:00:00 2001 From: Evgeny Metelkin Date: Thu, 28 Dec 2023 18:47:15 +0200 Subject: [PATCH] update deploy action --- .github/workflows/documentation.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index ab4caf3c..eae42ea4 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -21,9 +21,9 @@ jobs: - run: npm run jsdoc - run: cp -f src/builder/declaration-schema.json docs - name: Deploy to "gh-pages" - uses: JamesIves/github-pages-deploy-action@releases/v3 + uses: JamesIves/github-pages-deploy-action@v4 with: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - BRANCH: gh-pages # The branch the action should deploy to. - FOLDER: docs # The folder the action should deploy. - CLEAN: true + token: ${{ secrets.GITHUB_TOKEN }} + branch: gh-pages # The branch the action should deploy to. + folder: docs # The folder the action should deploy. + clean: true