File tree 2 files changed +6
-3
lines changed
2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -113,7 +113,8 @@ jobs:
113
113
kind create cluster
114
114
OLM_VERSION=$(curl -s https://api.github.com/repos/operator-framework/operator-lifecycle-manager/releases/latest | jq -r .tag_name)
115
115
curl -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/$OLM_VERSION/install.sh -o install.sh
116
- sh install.sh $OLM_VERSION
116
+ chmod +x install.sh
117
+ ./install.sh $OLM_VERSION
117
118
118
119
- name : Build and deploy KEDA olm operator index for deployment testing
119
120
run : |
@@ -179,7 +180,8 @@ jobs:
179
180
kind create cluster
180
181
OLM_VERSION=$(curl -s https://api.github.com/repos/operator-framework/operator-lifecycle-manager/releases/latest | jq -r .tag_name)
181
182
curl -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/$OLM_VERSION/install.sh -o install.sh
182
- sh install.sh $OLM_VERSION
183
+ chmod +x install.sh
184
+ ./install.sh $OLM_VERSION
183
185
184
186
- name : Disable 'replaces' field, as the testing bundle doesn't replace anything
185
187
run : |
Original file line number Diff line number Diff line change 56
56
kind create cluster
57
57
OLM_VERSION=$(curl -s https://api.github.com/repos/operator-framework/operator-lifecycle-manager/releases/latest | jq -r .tag_name)
58
58
curl -L https://github.com/operator-framework/operator-lifecycle-manager/releases/download/$OLM_VERSION/install.sh -o install.sh
59
- sh install.sh $OLM_VERSION
59
+ chmod +x install.sh
60
+ ./install.sh $OLM_VERSION
60
61
61
62
- name : Build and deploy KEDA olm operator index for deployment testing
62
63
run : |
You can’t perform that action at this time.
0 commit comments