| 1234567891011121314151617181920 |
- name: release
- on: create
- jobs:
- release:
- runs-on: ubuntu-latest
- if: github.event.ref_type == 'tag' && !contains(github.event.ref, 'alpha')
- steps:
- - uses: actions/checkout@v4
- - name: release
- uses: actions/setup-node@v4
- with:
- node-version: 20
- - run: |
- npm i -g lerna@^6 && 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
|