mirror of
https://github.com/gitui-org/gitui
synced 2026-05-23 08:58:21 +00:00
fix windows bin size measure
This commit is contained in:
parent
7b98181cbb
commit
d53377aabb
1 changed files with 7 additions and 1 deletions
8
.github/workflows/ci.yml
vendored
8
.github/workflows/ci.yml
vendored
|
|
@ -59,9 +59,15 @@ jobs:
|
|||
- name: Build Release
|
||||
run: make build-release
|
||||
|
||||
- name: Binary Size
|
||||
- name: Binary Size (unix)
|
||||
if: matrix.os != 'windows-latest'
|
||||
run: |
|
||||
ls -l ./target/release/gitui
|
||||
|
||||
- name: Binary Size (win)
|
||||
if: matrix.os == 'windows-latest'
|
||||
run: |
|
||||
ls -l ./target/release/gitui.exe
|
||||
|
||||
- name: Build MSI (windows)
|
||||
if: matrix.os == 'windows-latest'
|
||||
|
|
|
|||
Loading…
Reference in a new issue