Skip to content

Commit

Permalink
remove dev flag from examples (#192)
Browse files Browse the repository at this point in the history
* remove dev flag from examples

* update changelog
  • Loading branch information
bdefore authored Oct 11, 2021
1 parent e26abd0 commit 2f0818b
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 20 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## Unreleased

- [#191](https://github.com/meltwater/drone-cache/issues/191) Update examples to reference non-dev images

### Added

- Nothing.
Expand Down
20 changes: 10 additions & 10 deletions DOCS.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ name: default

steps:
- name: restore-cache
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
environment:
AWS_ACCESS_KEY_ID:
from_secret: aws_access_key_id
Expand All @@ -122,7 +122,7 @@ steps:
- make drone-cache

- name: rebuild-cache
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
pull: true
environment:
AWS_ACCESS_KEY_ID:
Expand All @@ -145,7 +145,7 @@ name: default

steps:
- name: restore-cache-with-filesystem
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
pull: true
settings:
backend: "filesystem"
Expand All @@ -167,7 +167,7 @@ steps:
- make drone-cache

- name: rebuild-cache-with-filesystem
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
pull: true
settings:
backend: "filesystem"
Expand Down Expand Up @@ -196,7 +196,7 @@ name: default

steps:
- name: restore-cache-with-key
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
environment:
AWS_ACCESS_KEY_ID:
from_secret: aws_access_key_id
Expand All @@ -219,7 +219,7 @@ steps:
- make drone-cache

- name: rebuild-cache-with-key
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
pull: true
environment:
AWS_ACCESS_KEY_ID:
Expand All @@ -244,7 +244,7 @@ name: default

steps:
- name: restore-cache-with-gzip
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
pull: true
environment:
AWS_ACCESS_KEY_ID:
Expand All @@ -268,7 +268,7 @@ steps:
- make drone-cache

- name: rebuild-cache-with-gzip
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
pull: true
environment:
AWS_ACCESS_KEY_ID:
Expand All @@ -293,7 +293,7 @@ name: default

steps:
- name: restore-cache-debug
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
settings:
pull: true
restore: true
Expand All @@ -307,7 +307,7 @@ steps:
- make drone-cache

- name: restore-cache-debug
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
settings:
pull: true
rebuild: true
Expand Down
20 changes: 10 additions & 10 deletions docs/examples/drone.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ name: default

steps:
- name: restore-cache
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
environment:
AWS_ACCESS_KEY_ID:
from_secret: aws_access_key_id
Expand All @@ -34,7 +34,7 @@ steps:
- make drone-cache

- name: rebuild-cache
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
pull: true
environment:
AWS_ACCESS_KEY_ID:
Expand All @@ -59,7 +59,7 @@ name: default

steps:
- name: restore-cache-with-filesystem
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
pull: true
settings:
backend: "filesystem"
Expand All @@ -81,7 +81,7 @@ steps:
- make drone-cache

- name: rebuild-cache-with-filesystem
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
pull: true
settings:
backend: "filesystem"
Expand Down Expand Up @@ -111,7 +111,7 @@ name: default

steps:
- name: restore-cache-with-key
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
environment:
AWS_ACCESS_KEY_ID:
from_secret: aws_access_key_id
Expand All @@ -134,7 +134,7 @@ steps:
- make drone-cache

- name: rebuild-cache-with-key
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
pull: true
environment:
AWS_ACCESS_KEY_ID:
Expand All @@ -158,7 +158,7 @@ name: default

steps:
- name: restore-cache-with-gzip
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
pull: true
environment:
AWS_ACCESS_KEY_ID:
Expand All @@ -182,7 +182,7 @@ steps:
- make drone-cache

- name: rebuild-cache-with-gzip
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
pull: true
environment:
AWS_ACCESS_KEY_ID:
Expand All @@ -207,7 +207,7 @@ name: default

steps:
- name: restore-cache-debug
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
settings:
pull: true
restore: true
Expand All @@ -221,7 +221,7 @@ steps:
- make drone-cache

- name: restore-cache-debug
image: meltwater/drone-cache:dev
image: meltwater/drone-cache
settings:
pull: true
rebuild: true
Expand Down

0 comments on commit 2f0818b

Please sign in to comment.