Skip to content

Commit

Permalink
fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Ming authored and Ming committed Feb 25, 2025
1 parent da2c313 commit 46ccc85
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,14 @@ jobs:
- name: Verify App Bundle
if: startsWith(matrix.platform, 'mac')
run: |
APP_PATH="dist/mac${matrix.platform == 'mac-arm64' ? '-arm64' : ''}/Chrome Power.app"
# 修复路径构建方式
if [ "${{ matrix.platform }}" == "mac-arm64" ]; then
APP_PATH="dist/mac-arm64/Chrome Power.app"
else
APP_PATH="dist/mac/Chrome Power.app"
fi
echo "Verifying app at: $APP_PATH"
echo "=== 检查应用签名 ==="
codesign -dvv "$APP_PATH" || true
Expand Down

0 comments on commit 46ccc85

Please sign in to comment.