2022-05-19 16:14:47 +00:00
|
|
|
name: Release
|
2022-05-18 16:06:58 +00:00
|
|
|
|
2022-05-19 16:14:47 +00:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
2022-05-18 16:06:58 +00:00
|
|
|
|
|
|
|
jobs:
|
2022-05-19 16:14:47 +00:00
|
|
|
release-pr:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
outputs:
|
|
|
|
release_created: ${{ steps.release.outputs.release_created }}
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Remove `-post` suffix
|
|
|
|
run: node utils/remove_version_suffix.js
|
|
|
|
- name: Release
|
|
|
|
uses: google-github-actions/release-please-action@v3
|
|
|
|
id: release
|
|
|
|
with:
|
|
|
|
release-type: node
|
|
|
|
|
|
|
|
publish:
|
|
|
|
needs: release-pr
|
|
|
|
if: ${{ needs.release-pr.outputs.release_created }}
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Install dependencies
|
|
|
|
run: npm install
|
|
|
|
- name: Build puppeteer
|
|
|
|
run: npm run build
|
|
|
|
- name: Publish puppeteer
|
|
|
|
env:
|
|
|
|
NPM_TOKEN: ${{secrets.NPM_TOKEN_PUPPETEER}}
|
|
|
|
run: |
|
|
|
|
npm config set registry 'https://wombat-dressing-room.appspot.com/'
|
|
|
|
npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}'
|
|
|
|
echo "Publishing puppeteer"
|
|
|
|
npm publish
|
|
|
|
# DEPRECATED_RANGE=$(node utils/get_deprecated_version_range.js)
|
|
|
|
# echo "Deprecating old puppeteer versions: $DEPRECATED_RANGE"
|
|
|
|
# npm deprecate puppeteer@$DEPRECATED_RANGE "Version no longer supported. Upgrade to @latest"
|
|
|
|
- name: Publish puppeteer-core
|
|
|
|
env:
|
|
|
|
NPM_TOKEN: ${{secrets.NPM_TOKEN_PUPPETEER_CORE}}
|
|
|
|
run: |
|
|
|
|
utils/prepare_puppeteer_core.js
|
|
|
|
npm config set registry 'https://wombat-dressing-room.appspot.com/'
|
|
|
|
npm config set '//wombat-dressing-room.appspot.com/:_authToken' '${NPM_TOKEN}'
|
|
|
|
npm publish
|
|
|
|
|
|
|
|
post-publish:
|
|
|
|
needs: publish
|
2022-05-18 16:06:58 +00:00
|
|
|
runs-on: ubuntu-latest
|
2022-05-19 10:51:18 +00:00
|
|
|
permissions:
|
2022-05-19 11:26:42 +00:00
|
|
|
contents: write
|
2022-05-18 16:06:58 +00:00
|
|
|
steps:
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
2022-05-19 16:14:47 +00:00
|
|
|
- name: Append `-post` to version
|
|
|
|
id: post-version
|
2022-05-19 13:13:16 +00:00
|
|
|
run: |
|
2022-05-19 16:14:47 +00:00
|
|
|
npm version --no-git-tag-version --no-commit-hooks "$(jq -r .version ./package.json)-post"
|
|
|
|
echo ::set-output name=VERSION::$(jq -r .version ./package.json)
|
|
|
|
- name: Build
|
2022-05-18 16:06:58 +00:00
|
|
|
run: |
|
2022-05-19 12:39:13 +00:00
|
|
|
npm install
|
2022-05-19 16:14:47 +00:00
|
|
|
npm run build
|
|
|
|
npm run doc
|
|
|
|
- name: Configure git
|
|
|
|
run: |
|
|
|
|
git config --global user.name 'actions-bot'
|
|
|
|
git config --global user.email '<github-actions-bot@google.com>'
|
|
|
|
- name: Commit and push
|
|
|
|
run: |
|
|
|
|
git add -A
|
|
|
|
git commit -m "chore: bump version to ${{ steps.post-version.outputs.VERSION }}"
|
|
|
|
git push
|