setup-go/src/constants.ts

12 lines
289 B
TypeScript
Raw Normal View History

export enum State {
2023-09-15 22:43:13 +02:00
CacheModPrimaryKey = 'CACHE_KEY',
CacheModMatchedKey = 'CACHE_RESULT',
CacheBuildPrimaryKey = 'CACHE_BUILD_KEY',
CacheBuildMatchedKey = 'CACHE_BUILD_RESULT'
}
export enum Outputs {
2023-09-15 22:43:13 +02:00
CacheModHit = 'cache-hit',
CacheBuildHit = 'cache-build-hit'
}