mirror of
https://github.com/pnpm/action-setup.git
synced 2025-02-04 12:29:09 +08:00
9 lines
176 B
TypeScript
9 lines
176 B
TypeScript
|
import { addPath } from '@actions/core'
|
||
|
import { Inputs } from '../inputs'
|
||
|
|
||
|
export function setOutputs(inputs: Inputs) {
|
||
|
addPath(inputs.binDest)
|
||
|
}
|
||
|
|
||
|
export default setOutputs
|