We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Since getting OS name from /etc/os-release and saving to the bundle's folder is always failed, this causes caching bundle gems not working.
/etc/os-release
The text was updated successfully, but these errors were encountered:
fix: cache bundle gems not working (#14)
5e26535
382a162
We can use a CACHE_VERSION secrect for better updating the cache as below code snippet.
CACHE_VERSION
# Use GitHub Actions' cache to cache dependencies on servers - uses: actions/cache@v2 with: path: vendor/bundle key: ${{ runner.os }}-gems-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/Gemfile.lock') }} restore-keys: | ${{ runner.os }}-gems-
Sorry, something went wrong.
jeffreytse
No branches or pull requests
Since getting OS name from
/etc/os-release
and saving to the bundle's folder is always failed, this causes caching bundle gems not working.The text was updated successfully, but these errors were encountered: