docker-build-push/src/state-helper.ts

8 lines
180 B
TypeScript
Raw Normal View History

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