9a4c3ed995
use absolute path
19 lines
296 B
YAML
19 lines
296 B
YAML
language: node_js
|
|
node_js:
|
|
- lts/*
|
|
branches:
|
|
only:
|
|
- main
|
|
install:
|
|
- cd vuepress
|
|
- yarn install
|
|
script:
|
|
- yarn build
|
|
deploy:
|
|
provider: pages
|
|
skip_cleanup: true
|
|
local_dir: vuepress/docs/.vuepress/dist
|
|
github_token: $CI_DEPLOY_TOKEN
|
|
keep_history: true
|
|
on:
|
|
branch: main |