Skip to content

Releases: SamKirkland/FTP-Deploy-Action

v4.2.0 🚀

22 Nov 16:27
a964461
Compare
Choose a tag to compare

If you are upgrading from a pervious version see the Migration Guide

Breaking changes

  • The exclude format has changed, see readme for more info - Fixes #202

v4.1.0 🚀

19 Aug 05:02
65c6a8f
Compare
Choose a tag to compare

If you are coming from version 3 see the Migration Guide

Bug Fixes

  • Cert issue - Fixes #149 and Fixes #127
  • Exceptions now bubble up - Fixes #123
  • Resolves local-dir incorrect usage - Fixes #145

Breaking changes

  • The exclude defaults have been updated. Going forward **/.git*, **/.git*/**, **/node_modules/** will be excluded
  • The exclude option now matches against folders. Previously trailing / were not matched against folders
  • The security option is now loose by default (this was bugged prior to v4.1.0)

v4.0.0 🚀

23 Nov 07:27
Compare
Choose a tag to compare

Migration Guide

Over the past few months I've been rewriting this action with a brand new architecture that resolves some long standing issues. The new version of this library is heavily inspired by rsync. rsync is a popular application that must be run over a ssh connection, it requires the rsync binary be install on both the client and the sever. rsync provides dozens of advanced arguments that can't be supported due to protocol limitations with ftp. Version 4 attempts to emulate at a high level how rsync syncs multiple folders, however operates over the constrained ftp protocol.

Less overhead

Version 4 no longer uses docker and has faster startup times!

Improved Defaults

.git and node_modules are now ignored by default, allowing users to opt-in to their deployment instead.

Improved Error Handling

Errors are now less cryptic.

Local Testing

Testing actions in version 3 was difficult, often requiring devs to change a value and commit it without testing the change locally. You can now run test configurations using node, see readme for more info.

Minimize downtime

The deployment is now setup in a way that minimizes downtime. For example, new files can be uploaded, then existing files updated, and finally old files deleted.

Removed features 🗑️

sftp support has been removed. In hindsight this never should have been added. Users with sftp access should be using rsync over ssh. I will create a separate github action for rsync deployments (coming soon)

v2.0.0 🚀

08 Oct 05:30
Compare
Choose a tag to compare

Features:

  • SFTP Support

Fixes & Documentation:

  • Added SFTP example

v1.5.0 🚀

17 Sep 14:13
b4e9e0a
Compare
Choose a tag to compare

Features:

  • Updated to support the new yaml configuration
  • Added ARGS option

Fixes & Documentation:

  • Documentation changed to the new yaml standard
  • Added examples
  • Added FAQ

v1.0.0 🚀

18 Feb 18:31
Compare
Choose a tag to compare

Automate deploying websites and more with this GitHub action.