2022-05-31 12:43:46 +00:00
|
|
|
name: Pre-release
|
2022-05-31 12:41:22 +00:00
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
2022-05-31 12:57:47 +00:00
|
|
|
branches:
|
2022-05-31 12:41:22 +00:00
|
|
|
- release-please-*
|
|
|
|
|
|
|
|
jobs:
|
2022-05-31 12:55:46 +00:00
|
|
|
pre-release:
|
2022-11-03 09:09:15 +00:00
|
|
|
if: "startsWith(github.event.head_commit.message, 'chore: release main')"
|
2022-05-31 12:41:22 +00:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: write
|
|
|
|
steps:
|
2022-10-06 10:44:45 +00:00
|
|
|
- name: Check out repository
|
|
|
|
uses: actions/checkout@v3.0.2
|
2022-06-01 13:49:41 +00:00
|
|
|
with:
|
2022-06-01 13:59:20 +00:00
|
|
|
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
|
2022-10-05 13:05:50 +00:00
|
|
|
- name: Pin dependencies
|
2022-10-06 08:27:14 +00:00
|
|
|
run: tools/pin_dependencies.py
|
2022-05-31 12:41:22 +00:00
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Build
|
2022-08-31 15:21:25 +00:00
|
|
|
env:
|
|
|
|
PUBLISH: 1
|
2022-05-31 12:41:22 +00:00
|
|
|
run: |
|
2022-07-01 11:52:39 +00:00
|
|
|
npm run docs
|
|
|
|
- name: Version docs
|
|
|
|
working-directory: ./website
|
|
|
|
run: |
|
|
|
|
npm install
|
2022-10-05 12:17:03 +00:00
|
|
|
npm run docusaurus docs:version $(jq -r .version ../packages/puppeteer/package.json)
|
2022-08-09 11:13:05 +00:00
|
|
|
npm run archive
|
2022-09-05 10:03:10 +00:00
|
|
|
- name: Re-build docs after versioning
|
|
|
|
env:
|
|
|
|
PUBLISH: 1
|
|
|
|
run: |
|
|
|
|
npm run docs
|
2022-07-06 07:15:12 +00:00
|
|
|
- name: Format
|
|
|
|
run: npm run format
|
2022-06-01 13:49:41 +00:00
|
|
|
- name: Commit
|
2022-05-31 12:41:22 +00:00
|
|
|
run: |
|
2022-06-01 13:49:41 +00:00
|
|
|
git config --global user.name 'release-please[bot]'
|
|
|
|
git config --global user.email '55107282+release-please[bot]@users.noreply.github.com'
|
2022-07-01 11:52:39 +00:00
|
|
|
git add .
|
2022-07-01 14:00:27 +00:00
|
|
|
git commit -m 'chore: generate versioned docs'
|
2022-06-01 14:02:06 +00:00
|
|
|
git push --no-verify
|