mirror of
https://github.com/ustc-zzzz/mcbbs-markdown2bbcode-converter.git
synced 2025-01-30 19:29:36 +08:00
14 lines
448 B
YAML
14 lines
448 B
YAML
language: node_js
|
|
node_js: ["8"]
|
|
before_install:
|
|
- git config --global user.email "deploy@travis-ci.org"
|
|
- git config --global user.name "Travis CI Deployment Bot"
|
|
script:
|
|
- npm install
|
|
- npm run build
|
|
after_success:
|
|
- cd build/
|
|
- echo "mm2bc.ustc-zzzz.net" >CNAME
|
|
- git init; git add -- *; git commit --allow-empty-message -m ""
|
|
- git push -f -q https://ustc-zzzz:$GITHUB_TOKEN@github.com/ustc-zzzz/mcbbs-markdown2bbcode-converter master:gh-pages
|