1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-21 15:04:11 -05:00

ci: use gnu tar on macos (#10069)

This commit is contained in:
Yoshiya Hinosawa 2021-04-09 02:37:59 +09:00 committed by GitHub
parent 4e70ff80c2
commit 3dd525d767
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -163,6 +163,13 @@ jobs:
- name: Restore timestamps
run: python ./tools/restore_mtime.py
# Work around https://github.com/actions/cache/issues/403 by using GNU tar
# instead of BSD tar.
- name: Install GNU tar
if: matrix.os == 'macos-10.15'
run: |
brew install gnu-tar
- name: Cache
uses: actions/cache@v2
with: