Skip to content

Commit b9fb1bb

Browse files
committed
fix: 'an unexpected storage error occurred' on multiline keys
1 parent 4d2cf6c commit b9fb1bb

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

src/commands/setup_macos_executor.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,7 @@ steps:
3030
condition: <<parameters.homebrew_cache>>
3131
steps:
3232
- restore_cache:
33-
key: |
34-
brew-cache-{{ arch }}-{{ .Environment.CACHE_VERSION }}
33+
key: brew-cache-{{ arch }}-{{ .Environment.CACHE_VERSION }}
3534

3635
- run:
3736
name: Install node@<<parameters.node_version>>
@@ -72,5 +71,4 @@ steps:
7271
- save_cache:
7372
paths:
7473
- ~/Library/Caches/Homebrew
75-
key: |
76-
brew-cache-{{ arch }}-{{ .Environment.CACHE_VERSION }}
74+
key: brew-cache-{{ arch }}-{{ .Environment.CACHE_VERSION }}

src/commands/yarn_install.yml

+1-2
Original file line numberDiff line numberDiff line change
@@ -47,5 +47,4 @@ steps:
4747
- save_cache:
4848
paths:
4949
- <<parameters.cache_folder>>
50-
key: |
51-
yarn-cache-{{ arch }}-{{ checksum "~/.tmp/checksumfiles/package.json" }}-{{ checksum "~/.tmp/checksumfiles/yarn.lock" }}-{{ .Environment.CACHE_VERSION }}
50+
key: yarn-cache-{{ arch }}-{{ checksum "~/.tmp/checksumfiles/package.json" }}-{{ checksum "~/.tmp/checksumfiles/yarn.lock" }}-{{ .Environment.CACHE_VERSION }}

0 commit comments

Comments
 (0)