File tree Expand file tree Collapse file tree 1 file changed +35
-0
lines changed
Expand file tree Collapse file tree 1 file changed +35
-0
lines changed Original file line number Diff line number Diff line change 1+ name : " AWS S3 Sync"
2+ description : " This action syncs github repository with AWS S3 buckets"
3+ author : yashrajdighe
4+
5+ inputs :
6+ source :
7+ description : " source directory"
8+ required : true
9+ delete :
10+ description : " delete files which does not exists ar source"
11+ default : " False"
12+ exclude :
13+ description : " files to exclude"
14+ default : " "
15+ include :
16+ description : " files to include"
17+ default : " *"
18+ destination :
19+ description : " S3 bucket name with directory to sync data"
20+ required : true
21+ dryrun :
22+ description : " Dry run the output"
23+ default : " False"
24+
25+
26+ runs :
27+ using : docker
28+ image : Dockerfile
29+ env :
30+ SOURCE : ${{ inputs.source }}
31+ DELETE : ${{ inputs.delete }}
32+ EXCLUDE : ${{ inputs.exclude }}
33+ INCLUDE : ${{ inputs.include }}
34+ DESTINATION : ${{ inputs.destination }}
35+ DRYRUN : ${{ inputs.dryrun }}
You can’t perform that action at this time.
0 commit comments