Skip to content

Commit

Permalink
Merge pull request #205 from meltwater/remen-patch-1
Browse files Browse the repository at this point in the history
[SKIP CI] Wrap `cache_key` in single-quotes in docs
  • Loading branch information
bdebyl authored Jul 19, 2022
2 parents bbec507 + 5ae5bcd commit 44c16f4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ steps:
pull: true
settings:
restore: true
cache_key: {{ .Commit.Branch }}-{{ checksum "go.mod" }} # default if ommitted is {{ .Commit.Branch }}
cache_key: '{{ .Commit.Branch }}-{{ checksum "go.mod" }}' # default if ommitted is {{ .Commit.Branch }}
bucket: drone-cache-bucket
region: eu-west-1
mount:
Expand All @@ -92,7 +92,7 @@ steps:
from_secret: aws_secret_access_key
settings:
rebuild: true
cache_key: {{ .Commit.Branch }}-{{ checksum "go.mod" }} # default if ommitted is {{ .Commit.Branch }}
cache_key: '{{ .Commit.Branch }}-{{ checksum "go.mod" }}' # default if ommitted is {{ .Commit.Branch }}
bucket: drone-cache-bucket
region: eu-west-1
mount:
Expand Down

0 comments on commit 44c16f4

Please sign in to comment.