mirror of
https://git.mirrors.martin98.com/https://github.com/actions/toolkit
synced 2025-11-20 03:01:06 +08:00
18 lines
290 B
TypeScript
18 lines
290 B
TypeScript
/**
|
|
* Options to control cache upload
|
|
*/
|
|
export interface UploadOptions {
|
|
/**
|
|
* Number of parallel cache upload
|
|
*
|
|
* @default 4
|
|
*/
|
|
uploadConcurrency?: number
|
|
/**
|
|
* Maximum chunk size in bytes for cache upload
|
|
*
|
|
* @default 32MB
|
|
*/
|
|
uploadChunkSize?: number
|
|
}
|