Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .github/workflows/build-unified.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,8 +119,7 @@ jobs:
- name: 运行 Windows PyInstaller 构建
if: |
matrix.platform == 'windows' &&
(contains(github.event.head_commit.message, '开始打包') ||
startsWith(github.ref, 'refs/tags/v'))
contains(github.event.head_commit.message, '开始打包')
run: |
echo "开始 Windows PyInstaller 构建流程..."
echo "使用uv进行依赖同步..."
Expand All @@ -132,8 +131,7 @@ jobs:
- name: 运行 Linux PyInstaller 构建
if: |
matrix.platform == 'linux' &&
(contains(github.event.head_commit.message, '开始打包') ||
startsWith(github.ref, 'refs/tags/v'))
contains(github.event.head_commit.message, '开始打包')
run: |
echo "开始 Linux PyInstaller 构建流程..."
echo "使用uv进行依赖同步..."
Expand Down
3 changes: 2 additions & 1 deletion Secrandom.spec
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ exe = EXE(
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon="data/secrandom-icon-paper.ico",
icon="resources/secrandom-icon-paper.ico",
)

# 创建目录模式输出
Expand All @@ -89,3 +89,4 @@ coll = COLLECT(
upx_exclude=[],
name="SecRandom",
)
#nothing
Loading