mirror of
https://github.com/thegeeklab/wp-s3-action.git
synced 2024-11-22 01:00:40 +00:00
Merge branch 'master' into native
This commit is contained in:
commit
7c44ac78b5
31
MAINTAINERS
Normal file
31
MAINTAINERS
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
[people]
|
||||||
|
[people.bradrydzewski]
|
||||||
|
name = "Brad Rydzewski"
|
||||||
|
email = "brad@drone.io"
|
||||||
|
login = "bradrydzewski"
|
||||||
|
[people.Bugagazavr]
|
||||||
|
login = "Bugagazavr"
|
||||||
|
[people.donny-dont]
|
||||||
|
name = "Don Olmstead"
|
||||||
|
email = "donny-dont@gmail.com"
|
||||||
|
login = "donny-dont"
|
||||||
|
[people.jackspirou]
|
||||||
|
name = "Jack Spirou"
|
||||||
|
email = ""
|
||||||
|
login = "jackspirou"
|
||||||
|
[people.msteinert]
|
||||||
|
name = "Mike Steinert"
|
||||||
|
email = ""
|
||||||
|
login = "msteinert"
|
||||||
|
[people.nlf]
|
||||||
|
name = "Nathan LaFreniere"
|
||||||
|
email = ""
|
||||||
|
login = "nlf"
|
||||||
|
[people.tboerger]
|
||||||
|
name = "Thomas Boerger"
|
||||||
|
email = ""
|
||||||
|
login = "tboerger"
|
||||||
|
|
||||||
|
[org]
|
||||||
|
[org.core]
|
||||||
|
people = ["bradrydzewski", "Bugagazavr", "donny-dont", "jackspirou", "msteinert", "nlf", "tboerger"]
|
65
README.md
Normal file
65
README.md
Normal file
@ -0,0 +1,65 @@
|
|||||||
|
# drone-s3-sync
|
||||||
|
|
||||||
|
[![Build Status](http://beta.drone.io/api/badges/drone-plugins/drone-s3-sync/status.svg)](http://beta.drone.io/drone-plugins/drone-s3-sync)
|
||||||
|
[![](https://badge.imagelayers.io/plugins/drone-s3-sync:latest.svg)](https://imagelayers.io/?images=plugins/drone-s3-sync:latest 'Get your own badge on imagelayers.io')
|
||||||
|
|
||||||
|
Drone plugin to synchronize files and folders with Amazon S3
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
```sh
|
||||||
|
./drone-s3-sync <<EOF
|
||||||
|
{
|
||||||
|
"repo": {
|
||||||
|
"clone_url": "git://github.com/drone/drone",
|
||||||
|
"full_name": "drone/drone"
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"event": "push",
|
||||||
|
"branch": "master",
|
||||||
|
"commit": "436b7a6e2abaddfd35740527353e78a227ddcb2c",
|
||||||
|
"ref": "refs/heads/master"
|
||||||
|
},
|
||||||
|
"workspace": {
|
||||||
|
"root": "/drone/src",
|
||||||
|
"path": "/drone/src/github.com/drone/drone"
|
||||||
|
},
|
||||||
|
"vargs": {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
```
|
||||||
|
|
||||||
|
## Docker
|
||||||
|
|
||||||
|
Build the Docker container using `make`:
|
||||||
|
|
||||||
|
```sh
|
||||||
|
make deps build
|
||||||
|
docker build --rm=true -t plugins/drone-s3-sync .
|
||||||
|
```
|
||||||
|
|
||||||
|
### Example
|
||||||
|
|
||||||
|
```sh
|
||||||
|
docker run -i plugins/drone-s3-sync <<EOF
|
||||||
|
{
|
||||||
|
"repo": {
|
||||||
|
"clone_url": "git://github.com/drone/drone",
|
||||||
|
"full_name": "drone/drone"
|
||||||
|
},
|
||||||
|
"build": {
|
||||||
|
"event": "push",
|
||||||
|
"branch": "master",
|
||||||
|
"commit": "436b7a6e2abaddfd35740527353e78a227ddcb2c",
|
||||||
|
"ref": "refs/heads/master"
|
||||||
|
},
|
||||||
|
"workspace": {
|
||||||
|
"root": "/drone/src",
|
||||||
|
"path": "/drone/src/github.com/drone/drone"
|
||||||
|
},
|
||||||
|
"vargs": {
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EOF
|
||||||
|
```
|
Loading…
Reference in New Issue
Block a user