Skip to content

remove echarts-gl demo #36

remove echarts-gl demo

remove echarts-gl demo #36

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- master
- fix/action
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- name: Install
run: yarn
- name: Build
run: yarn release
- name: Deploy to GitHub Pages
if: success()
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: dist/docs/browser
env:
GITHUB_TOKEN: ${{ secrets.ACCESS_TOKEN }}