fix windows bin size measure

This commit is contained in:
Stephan Dilly 2021-04-19 18:20:21 +02:00
parent 7b98181cbb
commit d53377aabb

View file

@ -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'