mirror of
https://github.com/BililiveRecorder/BililiveRecorder.git
synced 2024-11-16 03:32:20 +08:00
25 lines
732 B
Markdown
25 lines
732 B
Markdown
# 新版本发布流程备忘
|
|
|
|
- 在 `dev-1.3` 分支完成修改的功能,实际运行测试一遍
|
|
- 在 GitHub 创建 Release 并发布
|
|
- GitHub Actions 会自动补充 Assets
|
|
- 从 Artifacts 里下载 `WPF-NupkgReleases`
|
|
- 运行 `squirrel --releasify` 命令
|
|
- commit push soft.danmuji.org
|
|
- 修改 `rec.danmuji.org` 上的更新日志
|
|
|
|
```powershell
|
|
# $pkg="/path/to/BililiveRecorder.{version}.nupkg"
|
|
# $dst="/path/to/soft.danmuji.org/BililiveRecorder"
|
|
$pkg=""
|
|
$dst=""
|
|
|
|
$template="$dst/Setup-old.exe"
|
|
$icon="./BililiveRecorder.WPF/installer.ico"
|
|
|
|
mv "$dst/Setup.exe" "$template"
|
|
squirrel --releasify "$pkg" -r "$dst" --setupIcon "$icon" --bootstrapperExe "$template" --framework-version net472 --no-msi
|
|
|
|
rm "$template"
|
|
```
|