| 12345678910111213141516171819202122 |
- name: release
- on:
- push:
- tags:
- - 'v*'
- jobs:
- release:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: release
- uses: actions/setup-node@v2
- with:
- node-version: 14
- - run: |
- npm i -g lerna && npm run bootstrap
- node scripts/release.js
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- CHANGELOG_PATH: content/start/changelog/index.md, content/start/changelog/index-en-US.md
|