Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .github/workflows/update-api-docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ on:
- cron: '0 3 * * *'
workflow_dispatch:

permissions:
contents: write
jobs:
build:
name: Build and update docs
Expand Down Expand Up @@ -44,12 +46,11 @@ jobs:
run: |
python update.py
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
uses: JamesIves/github-pages-deploy-action@releases/v4
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SINGLE_COMMIT: true
BASE_BRANCH: main
BRANCH: gh-pages
FOLDER: dist
GIT_CONFIG_NAME: V8 API docs updater
GIT_CONFIG_EMAIL: v8-dev+api@googlegroups.com
single-commit: true
base-branch: main
branch: gh-pages
folder: dist
git-config-name: V8 API docs updater
git-config-email: v8-dev+api@googlegroups.com
Loading