Skip to content

add video

add video #4

Workflow file for this run

name: build and publish
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
env:
QINIU_AK: ${{ secrets.QINIU_AK }}
QINIU_SK: ${{ secrets.QINIU_SK }}
strategy:
matrix:
node-version: [10.5]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: install dependencies
run: npm install
- name: install gitbook plugins
run: npx gitbook install
- name: build gitbook
run: npx gitbook build
- name: minify code
run: npx grunt minify
- name: upload website
run: npx grunt upload