Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update docs to reflect current pipeline config #188

Merged
merged 1 commit into from
Jun 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions docs.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ The S3 plugin uploads files and build artifacts to your S3 bucket, or S3-compati
The below pipeline configuration demonstrates simple usage:

```yml
pipeline:
steps:
upload:
image: woodpeckerci/plugin-s3
settings:
Expand All @@ -29,7 +29,7 @@ pipeline:
Source the aws credentials from secrets:

```yml
pipeline:
steps:
upload:
image: woodpeckerci/plugin-s3
settings:
Expand All @@ -45,7 +45,7 @@ pipeline:
Use the build number in the S3 target prefix:

```yml
pipeline:
steps:
upload:
image: woodpeckerci/plugin-s3
settings:
Expand All @@ -71,7 +71,7 @@ steps:
Configure the plugin to strip path prefixes when uploading:

```yml
pipeline:
steps:
upload:
image: woodpeckerci/plugin-s3
settings:
Expand All @@ -84,7 +84,7 @@ pipeline:
Configure the plugin to exclude files from upload and compress:

```yml
pipeline:
steps:
upload:
image: woodpeckerci/plugin-s3
settings:
Expand All @@ -99,7 +99,7 @@ pipeline:
Configure the plugin to connect to a Minio server:

```yml
pipeline:
steps:
upload:
image: woodpeckerci/plugin-s3
settings:
Expand Down