Skip to content

chore(deps): bump express from 4.17.1 to 4.19.2 in /website (#728) #88

chore(deps): bump express from 4.17.1 to 4.19.2 in /website (#728)

chore(deps): bump express from 4.17.1 to 4.19.2 in /website (#728) #88

Workflow file for this run

name: Build docs
on:
push:
branches:
- master
jobs:
build-docs-and-deploy:
# 服务器环境:最新版 Ubuntu
runs-on: ubuntu-latest
steps:
# 拉取代码
- uses: actions/checkout@v2
- name: Use Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.x
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- run: cd website && yarn
- run: cd website && npm run build
# 部署到 GitHub Pages
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.0
if: github.ref == 'refs/heads/master'
with:
BRANCH: gh-pages
FOLDER: website/build