Skip to content

fix: line,area,radar label style with callback (#3805) #56

fix: line,area,radar label style with callback (#3805)

fix: line,area,radar label style with callback (#3805) #56

Workflow file for this run

name: Deploy
on:
workflow_dispatch:
push:
branches:
- master
jobs:
deploy-site:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: yarn install
- run: cd site && yarn install
- run: cd site && npm run build
- run: cp ./site/CNAME ./site/dist/CNAME
- run: |
cd site/dist
git init
git config --local user.name antv
git config --local user.email [email protected]
git add .
git commit -m "update by release action"
- uses: ad-m/github-push-action@master
with:
github_token: ${{secrets.PERSONAL_ACCESS_TOKEN}}
directory: site/dist
branch: gh-pages
force: true