mirror of
https://github.com/docker/build-push-action.git
synced 2024-11-10 04:15:40 +01:00
3dc0757c66
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
25 lines
771 B
TypeScript
25 lines
771 B
TypeScript
import * as core from '@actions/core';
|
|
|
|
import {Inputs, sanitizeInputs} from './context';
|
|
|
|
export const tmpDir = process.env['STATE_tmpDir'] || '';
|
|
export const inputs = process.env['STATE_inputs'] ? JSON.parse(process.env['STATE_inputs']) : undefined;
|
|
export const buildRef = process.env['STATE_buildRef'] || '';
|
|
export const isSummarySupported = !!process.env['STATE_isSummarySupported'];
|
|
|
|
export function setTmpDir(tmpDir: string) {
|
|
core.saveState('tmpDir', tmpDir);
|
|
}
|
|
|
|
export function setInputs(inputs: Inputs) {
|
|
core.saveState('inputs', JSON.stringify(sanitizeInputs(inputs)));
|
|
}
|
|
|
|
export function setBuildRef(buildRef: string) {
|
|
core.saveState('buildRef', buildRef);
|
|
}
|
|
|
|
export function setSummarySupported() {
|
|
core.saveState('isSummarySupported', 'true');
|
|
}
|