Skip to content

Commit 9c282bf

Browse files
committed
Bump to v1.8.0
1 parent fb591eb commit 9c282bf

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

README.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ one doesn't already exist.
2020
```dockerfile
2121
FROM bash
2222

23-
RUN echo "my expensive build step"
23+
RUN echo 'my expensive build step'
2424
```
2525

2626
```yaml
2727
steps:
28-
- command: 'echo wow'
28+
- command: echo wow
2929
plugins:
30-
- seek-oss/docker-ecr-cache#v1.7.0
30+
- seek-oss/docker-ecr-cache#v1.8.0
3131
- docker#v3.3.0
3232
```
3333
@@ -50,9 +50,9 @@ RUN npm install
5050

5151
```yaml
5252
steps:
53-
- command: 'npm test'
53+
- command: npm test
5454
plugins:
55-
- seek-oss/docker-ecr-cache#v1.7.0:
55+
- seek-oss/docker-ecr-cache#v1.8.0:
5656
cache-on:
5757
- package-lock.json
5858
- docker#v3.3.0:
@@ -64,9 +64,9 @@ The `cache-on` property also supports Bash globbing with `globstar`:
6464

6565
```yaml
6666
steps:
67-
- command: 'npm test'
67+
- command: npm test
6868
plugins:
69-
- seek-oss/docker-ecr-cache#v1.7.0:
69+
- seek-oss/docker-ecr-cache#v1.8.0:
7070
cache-on:
7171
- '**/package.json' # monorepo with multiple manifest files
7272
- yarn.lock
@@ -81,9 +81,9 @@ It's possible to specify the Dockerfile to use by:
8181

8282
```yaml
8383
steps:
84-
- command: 'echo wow'
84+
- command: echo wow
8585
plugins:
86-
- seek-oss/docker-ecr-cache#v1.7.0:
86+
- seek-oss/docker-ecr-cache#v1.8.0:
8787
dockerfile: my-dockerfile
8888
- docker#v3.3.0
8989
```
@@ -102,9 +102,9 @@ stage to run commands against:
102102

103103
```yaml
104104
steps:
105-
- command: 'cargo test'
105+
- command: cargo test
106106
plugins:
107-
- seek-oss/docker-ecr-cache#v1.7.0:
107+
- seek-oss/docker-ecr-cache#v1.8.0:
108108
target: build-deps
109109
- docker#v3.3.0
110110
```
@@ -128,11 +128,11 @@ RUN echo "${ARG_2}"
128128

129129
```yaml
130130
steps:
131-
- command: 'echo amaze'
131+
- command: echo amaze
132132
env:
133133
ARG_1: wow
134134
plugins:
135-
- seek-oss/docker-ecr-cache#v1.7.0:
135+
- seek-oss/docker-ecr-cache#v1.8.0:
136136
build-args:
137137
- ARG_1
138138
- ARG_2=such
@@ -143,11 +143,11 @@ Additional `docker build` arguments be passed via the `additional-build-args` se
143143

144144
```yaml
145145
steps:
146-
- command: 'echo amaze'
146+
- command: echo amaze
147147
env:
148148
ARG_1: wow
149149
plugins:
150-
- seek-oss/docker-ecr-cache#v1.7.0:
150+
- seek-oss/docker-ecr-cache#v1.8.0:
151151
additional-build-args: '--ssh= default=\$SSH_AUTH_SOCK'
152152
- docker#v3.3.0
153153
```
@@ -158,9 +158,9 @@ By default images are kept in ECR for up to 30 days. This can be changed by spec
158158

159159
```yaml
160160
steps:
161-
- command: 'echo wow'
161+
- command: echo wow
162162
plugins:
163-
- seek-oss/docker-ecr-cache#v1.7.0:
163+
- seek-oss/docker-ecr-cache#v1.8.0:
164164
max-age-days: 7
165165
- docker#v3.3.0
166166
```
@@ -171,9 +171,9 @@ By default image name and computed tag are exported to the Docker buildkite plug
171171

172172
```yaml
173173
steps:
174-
- command: 'echo wow'
174+
- command: echo wow
175175
plugins:
176-
- seek-oss/docker-ecr-cache#v1.7.0:
176+
- seek-oss/docker-ecr-cache#v1.8.0:
177177
export-env-variable: BUILDKITE_PLUGIN_MY_CUSTOM_PLUGIN_CACHE_IMAGE
178178
- my-custom-plugin#v1.0.0:
179179
```
@@ -188,9 +188,9 @@ optionally use a custom repository name:
188188

189189
```yaml
190190
steps:
191-
- command: 'echo wow'
191+
- command: echo wow
192192
plugins:
193-
- seek-oss/docker-ecr-cache#v1.7.0:
193+
- seek-oss/docker-ecr-cache#v1.8.0:
194194
ecr-name: my-unique-repository-name
195195
ecr-tags:
196196
Key: Value
@@ -205,11 +205,11 @@ steps:
205205
Example:
206206

207207
```yaml
208-
- command: 'echo wow'
209-
plugins:
210-
- seek-oss/docker-ecr-cache#v1.7.0:
211-
registry-provider: gcr
212-
gcp-project: foo-bar-123456
208+
- command: echo wow
209+
plugins:
210+
- seek-oss/docker-ecr-cache#v1.8.0:
211+
registry-provider: gcr
212+
gcp-project: foo-bar-123456
213213
```
214214

215215
#### Required GCR configuration

0 commit comments

Comments
 (0)