nocobase/deploy-docs.sh

10 lines
233 B
Bash
Raw Normal View History

2023-06-20 10:05:06 +00:00
cd docs/dist/en-US
echo "docs.nocobase.com" >> CNAME
echo "" >> .nojekyll
git init
git remote add origin git@github.com:nocobase/docs.nocobase.com.git
git branch -M main
git add .
git commit -m "first commit"
git push -f origin main