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
When the cachix-action does
sh -c nix path-info --all | grep -v '.drv$' > store-path-pre-build
It adds the file store-path-pre-build to the build directory, which affects reproducibility if the file isn't ignored.
store-path-pre-build
Workaround for now: Add store-path-pre-build to filter sources or .gitignore if you are using gitignore.nix.
cc @domenkozar
The text was updated successfully, but these errors were encountered:
Ouch :) Nice catch, thank you!
Sorry, something went wrong.
Fixed via https://github.com/cachix/cachix-action/releases/tag/v6
WARNING: it's a breaking release, make sure to read changelog
domenkozar
No branches or pull requests
When the cachix-action does
sh -c nix path-info --all | grep -v '.drv$' > store-path-pre-build
It adds the file
store-path-pre-build
to the build directory, which affects reproducibility if the file isn't ignored.Workaround for now: Add
store-path-pre-build
to filter sources or .gitignore if you are using gitignore.nix.cc @domenkozar
The text was updated successfully, but these errors were encountered: