mirror of
https://github.com/docker/setup-docker-action.git
synced 2025-04-22 08:30:02 +02:00
8 lines
180 B
TypeScript
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);
|
|
}
|