File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -86,26 +86,26 @@ jobs:
86
86
with :
87
87
name : ' macos-x64-builds'
88
88
path : |
89
- ./release/Redis-Insight*x64.zip
90
89
./release/Redis-Insight*x64.dmg
91
- ./release/Redis-Insight*x64.dmg.blockmap
90
+ # ./release/Redis-Insight*x64.zip
91
+ # ./release/Redis-Insight*x64.dmg.blockmap
92
92
93
93
- name : Upload ARM packages
94
94
95
95
with :
96
96
name : ' macos-arm-builds'
97
97
path : |
98
- ./release/Redis-Insight*arm64.zip
99
98
./release/Redis-Insight*arm64.dmg
100
- ./release/Redis-Insight*arm64.dmg.blockmap
99
+ # ./release/Redis-Insight*arm64.zip
100
+ # ./release/Redis-Insight*arm64.dmg.blockmap
101
101
102
102
- name : Upload MAS packages
103
103
104
104
with :
105
105
name : ' macos-mas-builds'
106
106
path : |
107
107
./release/Redis-Insight*.pkg
108
- ./release/*-mac.yml
108
+ # ./release/*-mac.yml
109
109
110
110
- name : Upload redis stack packages
111
111
Original file line number Diff line number Diff line change 3
3
workflow_call :
4
4
5
5
env :
6
- SLACK_AUDIT_REPORT_KEY : ${secrets.SLACK_AUDIT_REPORT_KEY }}
6
+ SLACK_AUDIT_REPORT_KEY : ${{ secrets.SLACK_AUDIT_REPORT_KEY }}
7
7
8
8
jobs :
9
9
unit-tests :
Original file line number Diff line number Diff line change 1
1
name : Tests
2
2
3
3
on :
4
- push :
5
- branches-ignore :
6
- - main
4
+ # push:
5
+ # branches-ignore:
6
+ # - main
7
7
8
8
workflow_dispatch :
9
9
inputs :
@@ -41,14 +41,14 @@ jobs:
41
41
# TODO: concurrency
42
42
# concurrency: build
43
43
needs : changes
44
- if : ${{ needs.changes.outputs.frontend == 'true' || inputs.all-tests }}
44
+ if : needs.changes.outputs.frontend == 'true' || inputs.all-tests
45
45
uses : ./.github/workflows/tests-frontend.yml
46
46
# secrets: inherit
47
47
48
48
backend-tests :
49
49
# TODO: concurrency
50
50
# concurrency: build
51
51
needs : changes
52
- if : ${{ needs.changes.outputs.backend == 'true' || inputs.all-tests }}
52
+ if : needs.changes.outputs.backend == 'true' || inputs.all-tests
53
53
uses : ./.github/workflows/tests-backend.yml
54
54
# secrets: inherit
You can’t perform that action at this time.
0 commit comments