Skip to content

pcit-plugins/pcit-pages

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PCIT plugin -- Git Pages

Docker Stars Docker Pulls

发布 Pages

steps:
  pages:
    image: pcit/pages
    with:
      keep_history: true # 保留提交历史,默认值 false
      target_branch: gh-pages # pages 分支,默认值 gh-pages
      git_url: gitee.com/pcit-ce/pcit # 必填
      local_dir: build # pages 所在文件夹,默认值 public
      email: ${EMAIL} # 提交者 email,默认值 ci@khs1994.com
      username: khs1994 # 提交者用户名,默认值 pcit
      git_token: ${GITEE_TOKEN} # 必填
    if:
      status: success      

Test

$ cd project

$ docker run -it -v ${PWD}:/app --workdir=/app --env-file=/path/to/.env pcit/pages