mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
27 lines
608 B
YAML
27 lines
608 B
YAML
name: docs
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
paths-ignore:
|
|
- '**/__tests__/**'
|
|
workflow_dispatch:
|
|
|
|
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.GITHUB_TOKEN }}
|
|
TARGET_REPO: MCCTeam/MCCTeam.github.io
|
|
TARGET_BRANCH: master
|
|
BUILD_SCRIPT: yarn --cwd ./docs/ && yarn --cwd ./docs/ docs:dev
|
|
BUILD_DIR: docs/.vuepress/dist
|
|
CNAME: https://mccteam.github.io
|