34 lines
674 B
YAML
34 lines
674 B
YAML
name: Beta Deploy
|
|
on:
|
|
push:
|
|
branches:
|
|
- none
|
|
# - citest
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Checkout docs repo
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: mermaid-js/docs
|
|
path: docs
|
|
|
|
- name: Checkout
|
|
uses: actions/checkout@v2
|
|
with:
|
|
path: main
|
|
|
|
- uses: actions/setup-node@v2
|
|
with:
|
|
node-version: '12'
|
|
|
|
- run: |
|
|
cd main
|
|
npm i -g yarn
|
|
yarn install
|
|
yarn release-beta
|
|
git config user.name github-actions
|
|
git config user.email github-actions@github.com
|
|
|