forked from Mirror/attic-action
fix: various fixes
This commit is contained in:
parent
8c01d0bda1
commit
ce977ffab4
3 changed files with 7 additions and 4 deletions
|
@ -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");
|
||||
|
|
|
@ -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();
|
||||
|
|
|
@ -6,5 +6,5 @@ export const saveStorePaths = async () => {
|
|||
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);
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue