mirror of
https://git.studyfor.work/actions/action-setup.git
synced 2026-02-10 02:11:15 -05: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
|