mirror of
https://github.com/docker/login-action
synced 2024-11-13 01:21:41 +00:00
17 lines
453 B
TypeScript
17 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');
|
|
}
|