Fix musl libc toolchain cache access (#53)

This commit is contained in:
Peter McEvoy 2023-01-09 14:49:05 -05:00
parent 2b1f8a36e9
commit 16df0cd516

View File

@ -49,6 +49,13 @@ jobs:
#
- uses: actions/checkout@v3
- name: chown /usr/local
run: |
if [[ "${{ matrix.target }}" == "linux-arm64" || "${{ matrix.target }}" == "linux-x86_64" ]]; then
# See https://github.com/actions/cache/issues/845.
sudo chown -R $(whoami) /usr/local
fi
- name: Set up build cache
uses: actions/cache@v3
with: