Update releasing notes

This commit is contained in:
Genteure 2021-07-19 20:57:22 +08:00
parent 1242c3b139
commit e9c323778d
2 changed files with 16 additions and 1 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 55 KiB

View File

@ -4,6 +4,21 @@
- 在 GitHub 创建 Release 并发布
- GitHub Actions 会自动补充 Assets
- 从 Artifacts 里下载 `WPF-NupkgReleases`
- 运行 `squirrel --releasify "/path/to/BililiveRecorder.{version}.nupkg" -r "/path/to/soft.danmuji.org/BililiveRecorder" --framework-version net472 --no-msi`
- 运行 `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"
```