mirror of
https://github.com/labring/laf.git
synced 2026-01-18 16:03:17 +00:00
15 lines
180 B
Bash
15 lines
180 B
Bash
#!/usr/bin/env sh
|
|
|
|
set -e
|
|
|
|
cd ./.vitepress/dist
|
|
rm -rf .git
|
|
git init
|
|
git add -A
|
|
git commit -m "deploy"
|
|
|
|
git push -f git@github.com:lafjs/lafjs.github.io.git main
|
|
|
|
rm -rf .git
|
|
|
|
cd - |