nocobase/deploy-docs.sh
2023-06-20 18:05:06 +08:00

10 lines
233 B
Bash
Executable File

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