Skip to content

📃 docs: 优化文档 #40

📃 docs: 优化文档

📃 docs: 优化文档 #40

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: 自动部署文档
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the master branch
on:
push:
branches: [master]
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
strategy:
matrix:
node-version: [16.x]
npm-version: [7.x]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Checkout
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
# Runs a single command using the runners shell
- name: 安装pnpm
run: npm i -g pnpm
- name: 安装依赖
run: pnpm i
- name: 打包
run: pnpm run build
- name: 配置git
run: git config --global user.email "[email protected]" && git config --global user.name "GuoJikun"
- name: build and deploy
env:
ACCESS_TOKEN: ${{ secrets.git_token }}
BRANCH: gh-pages
run: pnpm run build
- name: 部署文档到gh-pages
env:
ACCESS_TOKEN: ${{ secrets.git_token }}
run: cd dist && git config --global init.defaultBranch main && git init && git add -A && git commit -m "deploy" && git push -f https://[email protected]/guojikun/preview-image.git main:gh-pages