├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── Dockerfile ├── LICENSE ├── README.md ├── action.yml ├── debug └── local-debug-deployment.yaml ├── dist └── index.js ├── docker ├── Dockerfile └── Makefile ├── images ├── ftp-upload-logo-full.png └── ftp-upload-logo-small.png ├── package.json ├── src ├── main.ts └── types.ts └── tsconfig.json /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/README.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/action.yml -------------------------------------------------------------------------------- /debug/local-debug-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/debug/local-debug-deployment.yaml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/dist/index.js -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /docker/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/docker/Makefile -------------------------------------------------------------------------------- /images/ftp-upload-logo-full.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/images/ftp-upload-logo-full.png -------------------------------------------------------------------------------- /images/ftp-upload-logo-small.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/images/ftp-upload-logo-small.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/package.json -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/src/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Automattic/FTP-Deploy-Action/HEAD/tsconfig.json --------------------------------------------------------------------------------