36 lines
852 B
YAML
36 lines
852 B
YAML
name: Release Train
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
schedule:
|
|
- cron: '0 19 * * 1,4'
|
|
|
|
jobs:
|
|
check-develop-beta-changes:
|
|
name: Check if develop is ahead of beta release
|
|
runs-on: ubuntu-latest
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
submodules: 'recursive'
|
|
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version:
|
|
16
|
|
- run: npm ci
|
|
working-directory: ./tools/beta-release/
|
|
|
|
- uses: actions/github-script@v6
|
|
with:
|
|
github-token: ${{ secrets.MY_PAT }}
|
|
script: |
|
|
const { startReleaseProcess } = await import('${{ github.workspace }}/tools/beta-release/app.js')
|
|
await startReleaseProcess({github, context, core})
|
|
|