Skip to content

Commit 6b000c1

Browse files
authored
Merge pull request #4131 from RedisInsight/main
main to release/2.62.0 fixes for ci
2 parents 6504cf2 + 1d95d8a commit 6b000c1

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/pipeline-build-macos.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,12 @@ jobs:
7171
echo $APP_BUNDLE_VERSION
7272
echo $CSC_KEYCHAIN
7373
74-
yarn package:stage && yarn package:mas
74+
yarn package:stage
7575
rm -rf release/mac
76-
mv release/mas-universal/Redis-Insight-mac-universal-mas.pkg release/Redis-Insight-mac-universal-mas.pkg
76+
77+
# TODO: return MAS build
78+
# yarn package:stage && yarn package:mas
79+
# mv release/mas-universal/Redis-Insight-mac-universal-mas.pkg release/Redis-Insight-mac-universal-mas.pkg
7780
7881
# handle manual builds
7982
- name: Build macos dmg (custom)

redisinsight/ui/src/services/storage.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,10 @@ class StorageService {
5252
const key = this.getKey(itemName)
5353
this.storage.removeItem(key)
5454
}
55+
56+
getAll() {
57+
return this.storage
58+
}
5559
}
5660
const envKey = window.__RI_PROXY_PATH__
5761

0 commit comments

Comments
 (0)