3
0
Fork 0
mirror of https://gitea.com/docker/build-push-action.git synced 2024-11-25 19:09:40 +01:00
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);
}