setup-docker-action/src/state-helper.ts
2023-03-02 15:11:50 +01:00

8 lines
180 B
TypeScript

import * as core from '@actions/core';
export const runDir = process.env['STATE_rundir'] || '';
export function setRunDir(runDir: string) {
core.saveState('rundir', runDir);
}