• This project
    • Loading...
  • Sign in

신지원 / LineMusicChatbot

%ea%b7%b8%eb%a6%bc1
Go to a project
Toggle navigation Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • LineMusicChatbot
  • MAIN
  • scripts
  • deploy-docs.sh
  • 신지원's avatar
    START · 029b450e
    029b450e
    신지원 authored 2021-05-23 16:14:59 +0900
deploy-docs.sh 285 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
#!/usr/bin/env sh

# abort on errors
set -e

# build
npm run docs:build

# navigate into the build output directory
cd docs/.vuepress/dist

git init
git add -A
git commit -m 'Deploy docs'

git push -f git@github.com:line/line-bot-sdk-nodejs.git master:gh-pages

cd -