tear down post step

This commit is contained in:
CrazyMax
2023-03-02 15:03:14 +01:00
parent 611b62c8d7
commit f2c84c46da
5 changed files with 33 additions and 5 deletions

7
src/state-helper.ts Normal file
View File

@@ -0,0 +1,7 @@
import * as core from '@actions/core';
export const runDir = process.env['STATE_rundir'] || '';
export function setRunDir(runDir: string) {
core.saveState('rundir', runDir);
}