mirror of
https://github.com/docker/login-action.git
synced 2024-11-18 01:55:40 +01:00
18 lines
453 B
TypeScript
18 lines
453 B
TypeScript
|
import * as core from '@actions/core';
|
||
|
|
||
|
export const IsPost = !!process.env['STATE_isPost'];
|
||
|
export const registry = process.env['STATE_registry'] || '';
|
||
|
export const logout = /true/i.test(process.env['STATE_logout'] || '');
|
||
|
|
||
|
export function setRegistry(registry: string) {
|
||
|
core.saveState('registry', registry);
|
||
|
}
|
||
|
|
||
|
export function setLogout(logout: string) {
|
||
|
core.saveState('logout', logout);
|
||
|
}
|
||
|
|
||
|
if (!IsPost) {
|
||
|
core.saveState('isPost', 'true');
|
||
|
}
|