From 61cf4c59ebfcba6671c279e5afae99d9a4c42b27 Mon Sep 17 00:00:00 2001 From: Erik Golinelli Date: Sat, 2 Dec 2023 21:06:16 +0100 Subject: [PATCH] Update GitHub deployment method in jsDoc workflow Configuration in jsDoc.yml was adjusted. Instead of using the deploy_key for authentication during deployment, the process now utilizes built-in GITHUB_TOKEN for better security and simplicity. --- .github/workflows/jsDoc.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/jsDoc.yml b/.github/workflows/jsDoc.yml index dd141a9..0dbc323 100644 --- a/.github/workflows/jsDoc.yml +++ b/.github/workflows/jsDoc.yml @@ -22,7 +22,7 @@ jobs: with: source_dir: ./lib recurse: true - output_dir: ./docs + output_dir: ./out config_file: jsdoc.json front_page: readme.md @@ -30,4 +30,4 @@ jobs: uses: peaceiris/actions-gh-pages@v3 with: github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs + publish_dir: ./out