├── .eslintignore ├── .eslintrc.json ├── .github ├── ISSUE_TEMPLATE │ └── bug_report.md └── workflows │ ├── ftp.yml │ └── ftps.yml ├── .gitignore ├── LICENSE ├── README.md ├── action.yml ├── dist └── index.js ├── images ├── ftp-deploy-logo-full.png └── ftp-deploy-logo-small.png ├── migration.md ├── package.json ├── project.code-workspace ├── src ├── main.test.ts ├── main.ts └── parse.ts └── tsconfig.json /.eslintignore: -------------------------------------------------------------------------------- 1 | dist/ 2 | node_modules/ -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/workflows/ftp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/.github/workflows/ftp.yml -------------------------------------------------------------------------------- /.github/workflows/ftps.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/.github/workflows/ftps.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/action.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/dist/index.js -------------------------------------------------------------------------------- /images/ftp-deploy-logo-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/images/ftp-deploy-logo-full.png -------------------------------------------------------------------------------- /images/ftp-deploy-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/images/ftp-deploy-logo-small.png -------------------------------------------------------------------------------- /migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/migration.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/package.json -------------------------------------------------------------------------------- /project.code-workspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/project.code-workspace -------------------------------------------------------------------------------- /src/main.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/src/main.test.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/parse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/src/parse.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SamKirkland/FTP-Deploy-Action/HEAD/tsconfig.json --------------------------------------------------------------------------------