ci: Use gnu tar on macOS

This commit is contained in:
Max Brunsfeld 2021-02-05 09:44:29 -08:00
parent d6ad7484a6
commit 8050c4026c

View file

@ -26,6 +26,12 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v2
# Work around https://github.com/actions/cache/issues/403.
- name: Use GNU tar
if: matrix.os == 'macos-latest'
run: |
echo PATH="/usr/local/opt/gnu-tar/libexec/gnubin:$PATH" >> $GITHUB_ENV
- name: Cache artifacts
id: cache
uses: actions/cache@v2