EAS Build Yarn issue: Tarball is not in network and can not be located in cache

Trying to build an Ad-Hoc version of my app and running into yarn issues: Tarball is not in network and can not be located in cache. It seems like the EAS Build Server does not have network access at the moment to install yarn packages.

Running yarn in directory 'mobile' 
yarn install v1.22.10
[1/4] Resolving packages...
[2/4] Fetching packages...
[stderr] error "/css-to-react-native/-/css-to-react-native-3.0.0.tgz": Tarball is not in network and can not be located in cache (["/css-to-react-native/-/css-to-react-native-3.0.0.tgz","/Users/expo/Library/Caches/Yarn/v6/npm-css-to-react-native-3.0.0-62dbe678072a824a689bcfee011fc96e02a7d756-integrity/node_modules/css-to-react-native/.yarn-tarball.tgz"])
info Visit https://yarnpkg.com/en/docs/cli/install for documentation about this command.
yarn exited with non-zero code: 1

It looks like it was this npm script that was working and no longer does:

"eas-build-pre-install": "bash -c \"[ ! -z \\\"EAS_BUILD_NPM_CACHE_URL\\\" ] && sed -i -e \\\"s#https://registry.yarnpkg.com#$EAS_BUILD_NPM_CACHE_URL#g\\\" yarn.lock\"",

I was told to use this here: Integrating with third-party tooling - Expo Documentation

And now that I’m comparing what is in the docs, the script command seems to have changed to this:

"eas-build-pre-install": "bash -c \"[ ! -z \\\"$EAS_BUILD_NPM_CACHE_URL\\\" ] && sed -i -e \\\"s#https://registry.yarnpkg.com#$EAS_BUILD_NPM_CACHE_URL#g\\\" yarn.lock\" || true"

I’m already running a build where I’ve removed that script. I’ll try it again with the new one to see if the issue is resolved.