Update cache-save.ts

This commit is contained in:
Daniil Zotov 2024-09-29 17:37:34 +03:00 committed by GitHub
parent b9d34de66d
commit 68fd46c4a3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,12 +1,17 @@
import { saveCache } from "@actions/cache";
import { getState, warning } from "@actions/core";
import { CacheState } from "./action";
import { createHash } from "node:crypto";
(async () => {
const state: CacheState = JSON.parse(getState("cache"));
if (state.cacheEnabled && !state.cacheHit) {
const cacheKey = createHash('sha1')
.update(state.url)
.digest('base64')
try {
await saveCache([state.bunPath], state.url);
await saveCache([state.bunPath], cacheKey);
process.exit(0);
} catch (error) {
warning("Failed to save Bun to cache.");