From d53377aabbb90a9f8c51113c2dd0a76230fe5ad4 Mon Sep 17 00:00:00 2001 From: Stephan Dilly Date: Mon, 19 Apr 2021 18:20:21 +0200 Subject: [PATCH] fix windows bin size measure --- .github/workflows/ci.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) 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'