Skip to content

Commit 6d68d8d

Browse files
Merge pull request #4153 from RedisInsight/latest
Latest to release 2.62.0
2 parents 0a00170 + 39c500a commit 6d68d8d

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

.github/workflows/publish-stores.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Download Docker images
2121
run: |
2222
mkdir release
23-
aws s3 cp s3://${AWS_BUCKET_NAME}/public/latest/docker ./release/docker --recursive
23+
aws s3 cp s3://${AWS_BUCKET_NAME}/public/latest/docker ./release --recursive
2424
2525
- name: Publish docker
2626
env:

.github/workflows/virustotal.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
uploadZipFile="./${{ matrix.artifact }}.zip"
8181
8282
# Compress artifactes
83-
zip -r "${uploadZipFile}" "./release"
83+
zip -r "${uploadZipFile}" "./release" ${{ startsWith(matrix.artifact, 'macos-') && '-x "*/redisstack/*" "*.tar.gz" "*.zip"' || '' }}
8484
8585
# Generate url to download zip file
8686
uploadUrl=$(curl -sq -XGET https://www.virustotal.com/api/v3/files/upload_url -H "x-apikey: $VIRUSTOTAL_API_KEY" | jq -r '.data')

tests/e2e/pageObjects/components/browser/tree-view.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ export class TreeView {
9393
await this.clickElementIfNotExpanded(base);
9494
if (names.length > 1) {
9595
for (let i = 1; i < names.length; i++) {
96-
base = `${base }${names[i]}:`;
96+
base = `${base}:${names[i]}:`;
9797
await this.clickElementIfNotExpanded(base);
9898
}
9999
}

tests/e2e/tests/electron/regression/database/cloud-sso.e2e.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ const pathes = {
2020
electronConfig: path.join('.', 'test-data', 'features-configs', 'sso-electron-build.json')
2121
};
2222
const logsWithUrlFilePath = path.join('test-data', 'chrome_logs.txt');
23-
24-
fixture `Cloud SSO`
23+
// TODO unskip after fixing testcafe issue with new electron RI-6365
24+
fixture.skip `Cloud SSO`
2525
.meta({ type: 'regression', rte: rte.standalone })
2626
.page(commonUrl)
2727
.beforeEach(async() => {

0 commit comments

Comments
 (0)