setup-uv/src/utils/inputs.ts

10 lines
463 B
TypeScript
Raw Normal View History

2024-08-23 23:58:26 +02:00
import * as core from '@actions/core'
export const version = core.getInput('version')
export const checkSum = core.getInput('checksum')
export const enableCache = core.getInput('enable-cache') === 'true'
export const cacheSuffix = core.getInput('cache-suffix') || ''
export const cacheLocalPath = core.getInput('cache-local-path')
export const githubToken = core.getInput('github-token')
export const cacheDependencyGlob = core.getInput('cache-dependency-glob')