fix: various fixes

This commit is contained in:
Ryan Cao 2023-09-15 00:12:36 +08:00
parent 8c01d0bda1
commit ce977ffab4
No known key found for this signature in database
3 changed files with 7 additions and 4 deletions

View file

@ -15,10 +15,10 @@ export const configure = async () => {
await exec("attic", ["login", "--set-default", cache, endpoint, token]);
if (skipUse === "true") {
core.info('Not adding attic cache to substituters as skip-use is set to true');
core.info("Not adding attic cache to substituters as skip-use is set to true");
} else {
core.info("Adding attic cache to substituters");
await exec.exec('attic', ['use', cache]);
await exec("attic", ["use", cache]);
}
core.info("Collecting store paths before build");

View file

@ -3,17 +3,20 @@ import { exec } from "@actions/exec";
import splitArray from "just-split";
import { saveStorePaths, getStorePaths } from "../utils";
export const push = async () => {
core.startGroup("Push to Attic");
try {
const skipPush = core.getInput("skip-push");
if (skipPush === "true") {
core.info("Pushing to cache is disabled by skip-push");
} else {
const cache = core.getInput("cache");
core.info("Pushing to cache");
const oldPaths = await getStorePaths();
await saveStorePaths();
const newPaths = await getStorePaths();

View file

@ -3,8 +3,8 @@ import { exec } from "@actions/exec";
import { readFile } from "node:fs/promises";
export const saveStorePaths = async () => {
await exec("sh", ["-c", "nix path-info --all --json > /tmp/store-paths"]);
await exec("sh", ["-c", "nix path-info --all --json > /tmp/store-paths"]);
};
export const getStorePaths = async () => {
return JSON.parse(await readFile("/tmp/store-paths", "utf8")).map((path) => path.path);
return (JSON.parse(await readFile("/tmp/store-paths", "utf8")) as { path: string }[]).map((path) => path.path);
};