I want to rsync some files into a timestamped folder on a remote host. That would require something like:
pipeline:
deploy:
image: drillster/drone-rsync
hosts: ["foo.com"]
source: "./build/"
target: "/home/app/deploy/${TIMESTAMP}/"
Is this possible?