Skip to content

chore: generate versioned docs #1811

chore: generate versioned docs

chore: generate versioned docs #1811

Workflow file for this run

name: Pre-release
permissions: read-all
on:
push:
branches:
- release-please-*
jobs:
check-changes:
uses: ./.github/workflows/changed-packages.yml
pre-release:
if: |
startsWith(github.event.head_commit.message, 'chore: release main') &&
contains(fromJSON(needs.check-changes.outputs.changes), 'puppeteer')
needs: check-changes
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
with:
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Install dependencies
run: npm ci
- name: Build all packages
env:
PUBLISH: 1
run: |
npm run build
- name: Build docs
env:
PUBLISH: 1
run: |
npm run docs
- name: Version docs
working-directory: ./website
run: |
npm ci
npm run docusaurus docs:version $(jq -r .version ../packages/puppeteer/package.json)
npm run archive
- name: Re-build docs after versioning
env:
PUBLISH: 1
run: |
npm run docs
- name: Format
run: npm run format
# Release-please does not update the package-lock
- name: Install to refresh package-lock
run: npm install
- name: Commit
run: |
git config --global user.name 'release-please[bot]'
git config --global user.email '55107282+release-please[bot]@users.noreply.github.com'
git add .
git commit -m 'chore: generate versioned docs' --no-verify
git push