2
0
mirror of https://gitea.com/docker/build-push-action.git synced 2025-05-18 00:29:25 +07:00
docker-build-push/src/state-helper.ts
CrazyMax d8823bfaed
switch to actions-toolkit implementation
Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
2023-02-24 10:22:19 +01:00

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);
}