()
| 65 | } |
| 66 | |
| 67 | export function logOutputs() { |
| 68 | core.startGroup('Outputs'); |
| 69 | for (const key in outputs) { |
| 70 | core.info(`${key}: ${outputs[key as keyof OutputTypes]}`); |
| 71 | } |
| 72 | core.endGroup(); |
| 73 | } |
| 74 | |
| 75 | export async function checkInputs() { |
| 76 | function setInput(input: input, value: string | undefined) { |