mirror of
https://github.com/pterodactyl/documentation.git
synced 2025-12-10 09:17:40 -06:00
14 lines
183 B
Bash
14 lines
183 B
Bash
#!/usr/bin/env sh
|
|
set -e
|
|
|
|
yarn run build
|
|
cd .vuepress/dist
|
|
|
|
git init
|
|
git add -A
|
|
git commit -m 'deploy'
|
|
|
|
git push -f git@github.com:pterodactyl/documentation.git master:gh-pages
|
|
|
|
cd -
|