diff options
author | Paul Spooren <mail@aparcar.org> | 2021-10-08 17:20:07 -1000 |
---|---|---|
committer | Paul Spooren <mail@aparcar.org> | 2021-10-08 17:20:07 -1000 |
commit | 5f5a61caf882c4cd07f6b0afeb0566dc127f5dc2 (patch) | |
tree | 696d99d51656fbb851c24fe875b1a8e52cd5a014 /.github/workflows/jsdoc.yml | |
parent | 56ef04849d46d355eccea8482cba43ec7ba582f6 (diff) |
CI: use GITHUB_TOKEN for page deployment
The token is set automatically when running on the master branch, no
personal access token is required.
Signed-off-by: Paul Spooren <mail@aparcar.org>
Diffstat (limited to '.github/workflows/jsdoc.yml')
-rw-r--r-- | .github/workflows/jsdoc.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/jsdoc.yml b/.github/workflows/jsdoc.yml index dd9d952176..b8cc3bc3b2 100644 --- a/.github/workflows/jsdoc.yml +++ b/.github/workflows/jsdoc.yml @@ -27,5 +27,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/ |