Skip to content

Commit

Permalink
drop server & ui
Browse files Browse the repository at this point in the history
  • Loading branch information
saqqdy committed Oct 17, 2023
1 parent b86b019 commit 86f7217
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
7 changes: 5 additions & 2 deletions build/tasks/buildDocs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,13 @@ export async function deployDocs() {
}
await runSpawnSync(`git commit -m "deploy"`, RUN_PATH)
await runSpawnSync(
`git push -f [email protected]:saqqdy/gitmars.git master:gh-pages`,
`git push -f https://github.com/saqqdy/gitmars.git master:gh-pages`,
RUN_PATH
)
await runSpawnSync(
`git push -f https://github.com/saqqdy/gitmars.git master:gh-pages`,
RUN_PATH
)
await runSpawnSync(`git push -f [email protected]:saqqdy/gitmars.git master:gh-pages`, RUN_PATH)
})
await Promise.all(builds)
}
Expand Down
5 changes: 5 additions & 0 deletions packages/docs/changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# 更新日志

## 2023.10.20 v6.0.0 更新日志

1. 移除 `server` `ui` 两个子项目
2. 升级依赖包

## 2023.09.09 v5.3.0 更新日志

1. `combine` `admin publish` `build` 指令传参增加 `--data`,用来传入其他自定义构建参数
Expand Down
4 changes: 2 additions & 2 deletions scripts/deploy-docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ git commit -m 'deploy'
# git push -f [email protected]:<USERNAME>/<REPO>.git master:gh-pages

# 把上面的 <USERNAME> 换成你自己的 Github 用户名,<REPO> 换成仓库名,比如我这里就是:
git push -f git@github.com:saqqdy/gitmars.git master:gh-pages
git push -f git@gitee.com:saqqdy/gitmars.git master:gh-pages
git push -f https://github.com/saqqdy/gitmars.git master:gh-pages
git push -f https://github.com/saqqdy/gitmars.git master:gh-pages

cd -

Expand Down

0 comments on commit 86f7217

Please sign in to comment.