actions: don't override cachix compression method

This was breaking cachix and it defaults to zstd anyway.
This commit is contained in:
Ben Wolsieffer 2024-03-06 19:21:33 -05:00
parent e41c59ae0d
commit 7b0c15e446
2 changed files with 2 additions and 2 deletions

View file

@ -54,7 +54,7 @@ function query(name, drvPath) {
exports.query = query;
function push(name, paths) {
return __awaiter(this, void 0, void 0, function* () {
yield execFile('cachix', ['--compression-method', 'zstd', 'push', name].concat(paths));
yield execFile('cachix', ['push', name].concat(paths));
});
}
exports.push = push;

View file

@ -12,5 +12,5 @@ export async function query(name: string, drvPath: string) {
}
export async function push(name: string, paths: string[]) {
await execFile('cachix', ['--compression-method', 'zstd', 'push', name].concat(paths))
await execFile('cachix', ['push', name].concat(paths))
}