Skip to content

Commit

Permalink
Merge pull request #281 from buildkite-plugins/new-release-version
Browse files Browse the repository at this point in the history
Update plugin version
  • Loading branch information
pzeballos authored Nov 8, 2024
2 parents a559dfb + ab475be commit db8815a
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ steps:
- command: "go build -o dist/my-app ."
artifact_paths: "./dist/my-app"
plugins:
- docker#v5.11.0:
- docker#v5.12.0:
image: "golang:1.11"
```
Expand All @@ -25,7 +25,7 @@ Windows images are also supported:
steps:
- command: "dotnet publish -c Release -o published"
plugins:
- docker#v5.11.0:
- docker#v5.12.0:
image: "microsoft/dotnet:latest"
always-pull: true
```
Expand All @@ -37,7 +37,7 @@ If you want to control how your command is passed to the docker container, you c
```yml
steps:
- plugins:
- docker#v5.11.0:
- docker#v5.12.0:
image: "mesosphere/aws-cli"
always-pull: true
command: ["s3", "sync", "s3://my-bucket/dist/", "/app/dist"]
Expand All @@ -52,7 +52,7 @@ Note: If you are utilizing Buildkite's [Elastic CI Stack S3 Secrets plugin](http
steps:
- command: "yarn install; yarn run test"
plugins:
- docker#v5.11.0:
- docker#v5.12.0:
image: "node:7"
always-pull: true
environment:
Expand All @@ -70,7 +70,7 @@ steps:
env:
MY_SPECIAL_BUT_PUBLIC_VALUE: kittens
plugins:
- docker#v5.11.0:
- docker#v5.12.0:
image: "node:7"
always-pull: true
propagate-environment: true
Expand All @@ -84,7 +84,7 @@ steps:
env:
MY_SPECIAL_BUT_PUBLIC_VALUE: kittens
plugins:
- docker#v5.11.0:
- docker#v5.12.0:
image: "node:7"
always-pull: true
propagate-aws-auth-tokens: true
Expand All @@ -96,7 +96,7 @@ You can pass in additional volumes to be mounted. This is useful for running Doc
steps:
- command: "docker build . -t image:tag; docker push image:tag"
plugins:
- docker#v5.11.0:
- docker#v5.12.0:
image: "docker:latest"
always-pull: true
volumes:
Expand All @@ -109,7 +109,7 @@ You can disable the default behaviour of mounting in the checkout to `workdir`:
steps:
- command: "npm start"
plugins:
- docker#v5.11.0:
- docker#v5.12.0:
image: "node:7"
always-pull: true
mount-checkout: false
Expand All @@ -128,7 +128,7 @@ steps:
- "p"
region: us-west-2
no-include-email: true
- docker#v5.11.0:
- docker#v5.12.0:
image: "d.dkr.ecr.us-west-2.amazonaws.com/imagename"
command: ["./run-integration-tests.sh"]
expand-volume-vars: true
Expand Down Expand Up @@ -156,7 +156,7 @@ steps:
plugins:
- artifacts#v1.9.0:
download: "node-7-image.tar.gz"
- docker#v5.11.0:
- docker#v5.12.0:
load: "node-7-image.tar.gz"
image: "node:7"
```
Expand Down

0 comments on commit db8815a

Please sign in to comment.