3
0
Fork 0
mirror of https://code.forgejo.org/actions/cache.git synced 2025-04-23 03:45:31 +00:00

Fix resource URLs

This commit is contained in:
Josh Gross 2019-12-17 14:52:40 -05:00
parent 577b274c51
commit b25804d19e
3 changed files with 6 additions and 9 deletions

View file

@ -157,7 +157,6 @@ async function uploadChunk(
"Content-Range": getContentRange(start, end)
};
core.debug(`Resource URL: ${resourceUrl}`);
return await restClient.uploadStream<void>("PATCH", resourceUrl, data, requestOptions);
}
@ -169,7 +168,7 @@ async function commitCache(
const requestOptions = getRequestOptions();
const commitCacheRequest: CommitCacheRequest = { size: filesize };
return await restClient.create(
cacheId.toString(),
`caches/${cacheId.toString()}`,
commitCacheRequest,
requestOptions
);
@ -184,7 +183,7 @@ export async function saveCache(
core.debug("Uploading chunks");
// Upload Chunks
const fileSize = fs.statSync(archivePath).size;
const resourceUrl = getCacheApiUrl() + cacheId.toString();
const resourceUrl = getCacheApiUrl() + "caches/" + cacheId.toString();
const uploads: Promise<IRestResponse<void>>[] = [];
let offset = 0;
while (offset < fileSize) {