Public Access
1
0
mirror of https://github.com/docker/build-push-action.git synced 2026-01-28 07:23:19 +03:00
Files
build-push-action/src/state-helper.ts
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);
}