diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d52e98db..4c6afc4b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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'