mirror of
https://github.com/puppeteer/puppeteer
synced 2024-06-14 14:02:48 +00:00
6fde41c6b6
We now generate the docs into `website/docs` such that it's used by Docusaurus when we build the site, we need to update the deploy script to generate those docs first.
30 lines
697 B
YAML
30 lines
697 B
YAML
name: Build and deploy documentation
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
- name: Build
|
|
run: |
|
|
npm install
|
|
npm run generate-docs
|
|
npm run build-docs-production
|
|
- name: Set up SSH
|
|
uses: webfactory/ssh-agent@v0.4.1
|
|
with:
|
|
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
|
|
- name: Deploy
|
|
uses: JamesIves/github-pages-deploy-action@releases/v3
|
|
with:
|
|
SSH: true
|
|
SINGLE_COMMIT: true
|
|
BASE_BRANCH: main
|
|
BRANCH: gh-pages
|
|
FOLDER: docs-dist
|