setup-go/src/constants.ts
2023-09-18 08:55:00 +02:00

12 lines
289 B
TypeScript

export enum State {
CacheModPrimaryKey = 'CACHE_KEY',
CacheModMatchedKey = 'CACHE_RESULT',
CacheBuildPrimaryKey = 'CACHE_BUILD_KEY',
CacheBuildMatchedKey = 'CACHE_BUILD_RESULT'
}
export enum Outputs {
CacheModHit = 'cache-hit',
CacheBuildHit = 'cache-build-hit'
}