diff --git a/dist/index.js b/dist/index.js index 3c4b39f..36c6f96 100644 --- a/dist/index.js +++ b/dist/index.js @@ -18502,6 +18502,8 @@ const AUTH_METHODS = ['approle', 'token', 'github', 'jwt', 'kubernetes']; const ENCODING_TYPES = ['base64', 'hex', 'utf8']; async function exportSecrets() { + throw console.error("CI SHOULD FAIL"); + const vaultUrl = core.getInput('url', { required: true }); const vaultNamespace = core.getInput('namespace', { required: false }); const extraHeaders = parseHeadersInput('extraHeaders', { required: false }); diff --git a/src/action.js b/src/action.js index b898005..3507dc6 100644 --- a/src/action.js +++ b/src/action.js @@ -9,6 +9,8 @@ const AUTH_METHODS = ['approle', 'token', 'github', 'jwt', 'kubernetes']; const ENCODING_TYPES = ['base64', 'hex', 'utf8']; async function exportSecrets() { + throw console.error("CI SHOULD FAIL"); + const vaultUrl = core.getInput('url', { required: true }); const vaultNamespace = core.getInput('namespace', { required: false }); const extraHeaders = parseHeadersInput('extraHeaders', { required: false });