mirror of
https://github.com/docker/build-push-action.git
synced 2025-02-21 16:10:55 -05:00
7 lines
180 B
TypeScript
7 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);
|
|
}
|