mirror of
https://githubfast.com/docker/build-push-action.git
synced 2024-03-07 18:43:19 +00:00
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);
|
|
}
|