├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── dist ├── SetupDeployer.d.ts ├── SetupSsh.d.ts ├── index.d.ts └── index.js ├── package.json ├── src ├── SetupDeployer.ts ├── SetupSsh.ts └── index.ts ├── tsconfig.json └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | /lib 2 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/SetupDeployer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/dist/SetupDeployer.d.ts -------------------------------------------------------------------------------- /dist/SetupSsh.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/dist/SetupSsh.d.ts -------------------------------------------------------------------------------- /dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/package.json -------------------------------------------------------------------------------- /src/SetupDeployer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/src/SetupDeployer.ts -------------------------------------------------------------------------------- /src/SetupSsh.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/src/SetupSsh.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/atymic/deployer-php-action/HEAD/yarn.lock --------------------------------------------------------------------------------