mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-10 04:15:40 +01:00
d8823bfaed
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
8 lines
180 B
TypeScript
8 lines
180 B
TypeScript
import * as core from '@actions/core';
|
|
|
|
export const tmpDir = process.env['STATE_tmpDir'] || '';
|
|
|
|
export function setTmpDir(tmpDir: string) {
|
|
core.saveState('tmpDir', tmpDir);
|
|
}
|