Files
build-push-action/src/state-helper.ts
T

8 lines
180 B
TypeScript
Raw Normal View History

2020-09-02 10:07:11 +02:00
import * as core from '@actions/core';
export const tmpDir = process.env['STATE_tmpDir'] || '';
export function setTmpDir(tmpDir: string) {
core.saveState('tmpDir', tmpDir);
}