-
Notifications
You must be signed in to change notification settings - Fork 16
开始打包 #158
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
开始打包 #158
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -178,31 +178,6 @@ jobs: | |
| Compress-Archive -Path zip_dist/SecRandom/* -DestinationPath $outputZip -Force | ||
| echo "目录模式打包完成: $outputZip" | ||
|
|
||
|
Comment on lines
178
to
180
|
||
| # Inno Setup 打包 | ||
| - name: Inno Setup 打包 | ||
| if: matrix.platform == 'windows' | ||
| run: | | ||
| echo "开始 Inno Setup 打包..." | ||
|
|
||
| # 确保构建输出目录存在 | ||
| if (!(Test-Path "build")) { | ||
| mkdir build | ||
| } | ||
|
|
||
| # 运行 Inno Setup 编译器 | ||
| & "C:\Program Files (x86)\Inno Setup 6\ISCC.exe" SRsetup.iss | ||
|
|
||
| # 检查安装程序是否生成并移动到 zip 目录 | ||
| if (Test-Path "build/SecRandom setup x64.exe") { | ||
| # 修改文件名以包含版本号,方便识别 | ||
| $setupName = "SecRandom-setup-${{ github.ref_name }}-${{ matrix.arch }}.exe" | ||
| Move-Item "build/SecRandom setup x64.exe" "zip/$setupName" | ||
| echo "Inno Setup 打包完成: zip/$setupName" | ||
| } else { | ||
| echo "错误:Inno Setup 安装程序未生成" | ||
| exit 1 | ||
| } | ||
|
|
||
| # Linux 打包操作 | ||
| - name: Linux 打包操作 | ||
| if: matrix.platform == 'linux' | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The removal of the Inno Setup packaging step eliminates the ability to generate Windows installer executables (.exe files). After this change, Windows builds will only produce ZIP archives. This is a breaking change that affects the release artifacts available to end users. Consider whether this removal is intentional, and if so, update the documentation and remove the now-unused SRsetup.iss file from the repository. If Inno Setup packaging should be retained, this deletion should be reverted.