Releases: jakejarvis/s3-sync-action
Releases · jakejarvis/s3-sync-action
v0.5.1
Simple dependency bumps:
- Python 3.8 base image
- aws-cli 1.17.1 – https://github.com/aws/aws-cli/blob/develop/CHANGELOG.rst#1171
v0.5.0
Default to us-east-1 region and clear credentials after sync is done.
v0.4.0
- PR #7: New environment variable to set destination directory in bucket other than root (thanks @rmcfadzean!)
- PR #8: Ability to use a different S3 endpoint (thanks @DanielSinclair!)
v0.3.1
Avoid whitespace issues in args with `sh -c`
v0.3.0
The following non-breaking changes have been made in this version:
- Cleaner method to set config using input variables using
aws configure
instead of~/.aws/credentials
and~/.aws/config
files. - No longer sets
--delete
and--follow-symlinks
flags by default — this may have been self-centered of me! These can be configured by addingargs: --delete --follow-symlinks
to your personal workflow file. - SOURCE_DIR environment variable is no longer required. Defaults to the root of the repository if not set.
v0.2.0: Custom arguments
v0.1.1: Small updates
Update license
v0.1.0: First release!
First release! As of now, the --delete
flag is set, which means any files not present in your source directory will be removed from the S3 bucket. Will become opt-out in next release.