Merge pull request #76 from zimbatm/no-unstable

only use stable nix commands
This commit is contained in:
Domen Kožar 2021-01-25 13:23:31 +00:00 committed by GitHub
commit 26cfe1ed98
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 3 deletions

View file

@ -44,7 +44,7 @@ async function setup() {
core.exportVariable('CACHIX_SIGNING_KEY', signingKey);
}
// Remember existing store paths
await exec.exec("sh", ["-c", `nix path-info --all | grep -v '\.drv$' > /tmp/store-path-pre-build`]);
await exec.exec("sh", ["-c", `${__dirname}/list-nix-store.sh > /tmp/store-path-pre-build`]);
} catch (error) {
core.setFailed(`Action failed with error: ${error}`);
}