Skip to content

排版布局单位抽出为css变量 #40

排版布局单位抽出为css变量

排版布局单位抽出为css变量 #40

Workflow file for this run

name: GitHub Page
on:
push:
branches:
- master
paths:
- '.github/**'
- 'src/**'
- 'packages/**'
- 'docs/**'
- 'examples/**'
jobs:
build-and-deploy:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12.x]
steps:
- name: Checkout
uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false
- name: Install and Build
run: |
npm install
npm run-script build:docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.ACCESS_TOKEN }}
publish_dir: ./dist