From 9c480bee2369138d31cfa1032d28e505ebd2bafc Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Fri, 5 Feb 2021 10:28:46 -0800 Subject: [PATCH] Print out tar version in CI --- .github/workflows/ci.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3fe315ba..1281dcf7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -32,6 +32,14 @@ jobs: run: | echo PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH" >> $GITHUB_ENV + - name: Check GNU tar + if: matrix.os == 'macos-latest' + run: | + echo "gtar:" + gtar --version + echo "tar:" + tar --version + - name: Cache artifacts id: cache uses: actions/cache@v2