Woodpecker CI Plugins
Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Toggle Dark/Light/Auto mode Back to homepage

wp-s3-action

Build Status Docker Hub Quay.io Go Report Card GitHub contributors Source: GitHub License: MIT

Woodpecker CI plugin to perform S3 actions.

Usage

steps:
  - name: sync
    image: quay.io/thegeeklab/wp-s3-action
    settings:
      access_key: randomstring
      secret_key: random-secret
      region: us-east-1
      bucket: my-bucket.s3-website-us-east-1.amazonaws.com
      source: folder/to/archive
      target: /target/location

Parameters

access_key required string
S3 access key.
Default: none
acl optional generic
Access control list.
Default: none
bucket required string
Name of the bucket.
Default: none
cache_control optional generic
Cache-control settings for uploads.
Default: none
cloudfront_distribution optional string
ID of cloudfront distribution to invalidate.
Default: none
content_encoding optional generic
Content-encoding settings for uploads.
Default: none
content_type optional generic
Content-type settings for uploads.
Default: none
delete optional bool
Delete locally removed files from the target.
Default: false
endpoint optional string
Endpoint for the s3 connection.
Default: none
max_concurrency optional integer
Customize number concurrent files to process.
Default: 100
metadata optional generic
Additional metadata for uploads.
Default: none
path_style optional bool
Enable path style for bucket paths.
Default: false
redirects optional generic
Redirects to create.
Default: none
region optional string
S3 region.
Default: us-east-1
secret_key required string
S3 secret key.
Default: none
source optional string
Upload source path.
Default: .
target optional string
Upload target path.
Default: /

Examples

Customize acl, content_type, content_encoding or cache_control:

steps:
  - name: sync
    image: quay.io/thegeeklab/wp-s3-action
    settings:
      access_key: randomstring
      secret_key: random-secret
      region: us-east-1
      bucket: my-bucket.s3-website-us-east-1.amazonaws.com
      source: folder/to/archive
      target: /target/location
      acl:
        "public/*": public-read
        "private/*": private
      content_type:
        ".svg": image/svg+xml
      content_encoding:
        ".js": gzip
        ".css": gzip
      cache_control: "public, max-age: 31536000"

All map parameters can be specified as map for a subset of files or as string for all files.

  • For the acl parameter the key must be a glob. Files without a matching rule will default to private.
  • For the content_type parameter, the key must be a file extension (including the leading dot). To apply a configuration to files without extension, the key can be set to an empty string "". For files without a matching rule, the content type is determined automatically.
  • For the content_encoding parameter, the key must be a file extension (including the leading dot). To apply a configuration to files without extension, the key can be set to an empty string "". For files without a matching rule, no Content Encoding header is set.
  • For the cache_control parameter, the key must be a file extension (including the leading dot). If you want to set cache control for files without an extension, set the key to the empty string "". For files without a matching rule, no Cache Control header is set.

Sync to Minio S3:

To use Minio S3 its required to set path_style: true.

steps:
  - name: sync
    image: quay.io/thegeeklab/wp-s3-action
    settings:
      endpoint: https://minio.example.com
      access_key: randomstring
      secret_key: random-secret
      bucket: my-bucket
      source: folder/to/archive
      target: /target/location
      path_style: true

Build

Build the binary with the following command:

make build

Build the container image with the following command:

docker build --file Containerfile.multiarch --tag thegeeklab/wp-s3-action .

Test

docker run --rm \
  -e PLUGIN_BUCKET=my_bucket \
  -e AWS_ACCESS_KEY_ID=randomstring \
  -e AWS_SECRET_ACCESS_KEY=random-secret \
  -v $(pwd):/build:z \
  -w /build \
  thegeeklab/wp-s3-action