Skip to content

Commit

Permalink
Merge branch 'master' of github.com:mnms/metavision-documents
Browse files Browse the repository at this point in the history
  • Loading branch information
runtodream committed Jul 25, 2024
2 parents 5b4722e + 5e3608d commit ddf1eb2
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,29 @@ mkdocs serve

- 배포
```
./deploy.sh
# MkDocs 사이트 빌드
mkdocs build
cp -rp ./site ../
# gh-pages 브랜치로 전환 (없으면 생성)
git checkout gh-pages
# 이전 파일 삭제
git rm -rf .
# 빌드된 파일 복사
cp -rp ../site/* .
# 파일 커밋 및 푸시
git add .
git commit -m "Update site"
git push origin gh-pages --force
# main 브랜치로 돌아가기
git checkout master
```

- 웹 페이지
```
https://mnms.github.io/metavision-documents/
```

0 comments on commit ddf1eb2

Please sign in to comment.