mirror of
https://gitee.com/actions-mirror/docker-build-push-action
synced 2026-06-05 10:01:39 +08: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);
|
|
}
|