puppeteer/.github/workflows/pre-release.yml

29 lines
710 B
YAML
Raw Normal View History

2022-05-31 12:43:46 +00:00
name: Pre-release
on:
push:
2022-05-31 12:57:47 +00:00
branches:
- release-please-*
jobs:
2022-05-31 12:55:46 +00:00
pre-release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
2022-05-31 13:24:23 +00:00
uses: actions/checkout@v3
- name: Install dependencies
run: npm install
- name: Build
run: |
node utils/generate_version_file.js
IS_PRE_RELEASE=1 npm run doc
- name: Commit and push
run: |
git config --global user.email "55107282+release-please[bot]@users.noreply.github.com"
git config --global user.name "release-please[bot]"
git add -A
2022-05-31 13:24:23 +00:00
git commit -m "chore: freeze version for release"
git push