Skip to content

Commit d53377a

Browse files
author
Stephan Dilly
committed
fix windows bin size measure
1 parent 7b98181 commit d53377a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/ci.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,15 @@ jobs:
5959
- name: Build Release
6060
run: make build-release
6161

62-
- name: Binary Size
62+
- name: Binary Size (unix)
63+
if: matrix.os != 'windows-latest'
6364
run: |
6465
ls -l ./target/release/gitui
66+
67+
- name: Binary Size (win)
68+
if: matrix.os == 'windows-latest'
69+
run: |
70+
ls -l ./target/release/gitui.exe
6571
6672
- name: Build MSI (windows)
6773
if: matrix.os == 'windows-latest'

0 commit comments

Comments
 (0)