UNPKG

envilder

Version:

A CLI and GitHub Action that securely centralizes your environment variables from AWS SSM or Azure Key Vault as a single source of truth

12 lines 368 B
#!/usr/bin/env node /** * Entry point for the GitHub Action * This file is executed when the action runs */ import { main } from './Gha.js'; main().catch(() => { // Gha.ts already logged an actionable message via presentGhaError() // before rethrowing; this handler only needs to set the exit code. process.exit(1); }); //# sourceMappingURL=Index.js.map