├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── LICENSE ├── README.md ├── action.yaml ├── dist ├── index.cjs └── index.cjs.map ├── package.json ├── rollup.config.js ├── src ├── constants.ts ├── index.ts └── infisical.ts └── tsconfig.json /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infisical/secrets-action/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /lib -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.7.0 -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ 3 | lib/ -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infisical/secrets-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infisical/secrets-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infisical/secrets-action/HEAD/action.yaml -------------------------------------------------------------------------------- /dist/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infisical/secrets-action/HEAD/dist/index.cjs -------------------------------------------------------------------------------- /dist/index.cjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infisical/secrets-action/HEAD/dist/index.cjs.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infisical/secrets-action/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infisical/secrets-action/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infisical/secrets-action/HEAD/src/constants.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infisical/secrets-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/infisical.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infisical/secrets-action/HEAD/src/infisical.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Infisical/secrets-action/HEAD/tsconfig.json --------------------------------------------------------------------------------