From 2e68d2c4930142470140a155c4e2f05e7d558b22 Mon Sep 17 00:00:00 2001 From: Erik Golinelli Date: Sat, 2 Dec 2023 20:36:32 +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 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/jsDoc.yml b/.github/workflows/jsDoc.yml index d8444e9..dd141a9 100644 --- a/.github/workflows/jsDoc.yml +++ b/.github/workflows/jsDoc.yml @@ -29,5 +29,5 @@ jobs: - name: Deploy uses: peaceiris/actions-gh-pages@v3 with: - deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }} + github_token: ${{ secrets.GITHUB_TOKEN }} publish_dir: ./docs