mirror of
https://github.com/CodePanda66/CSPostgraduate-408.git
synced 2023-05-21 21:49:33 +08:00
25 lines
564 B
YAML
25 lines
564 B
YAML
name: vuepress-deploy
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build-and-deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@master
|
|
|
|
- name: vuepress-deploy
|
|
uses: jenkey2011/vuepress-deploy@master
|
|
env:
|
|
ACCESS_TOKEN: ${{ secrets.DEPLOY_TOKEN }}
|
|
TARGET_REPO: KimYangOfCat/2021-CSPostgraduate-408
|
|
TARGET_BRANCH: gh-pages
|
|
BUILD_SCRIPT: yarn && yarn build
|
|
BUILD_DIR: 408Notes/.vuepress/dist/
|
|
CNAME: 408.kimyang.cn
|