Drone S3 plugin how to publish recursive?

Hi, i try publish build result to s3 (minio). How upload files recursive?

Plugin S3 recursive upload not work.

  publis:
    image: plugins/s3:1
    pull: true
    secrets: [ aws_access_key_id, aws_secret_access_key ]
    bucket: data
    path_style: true
    recursive: true
    endpoint: https://s3.example.local
    strip_prefix: compiled/
    source: compiled/*
    target: /
    when:
      event: [ push ]
      branch: [ master ]

Plugin source code contains flag recursive, but this flag not anything use in code.

		cli.BoolFlag{
			Name:   "recursive",
			Usage:  "upload files recursively",
			EnvVar: "PLUGIN_RECURSIVE",
		},

Plugin s3-sync not have custom endpoint option

I Create Pull request for plugin drone-s3-sync:
https://github.com/drone-plugins/drone-s3-sync/pull/36
Add endpoint option for this plugin. Sync for minio bucket it’s working