File tree Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Expand file tree Collapse file tree 1 file changed +13
-0
lines changed Original file line number Diff line number Diff line change @@ -121,6 +121,10 @@ jobs:
121
121
with :
122
122
ref : ${{ inputs.ref_name }}
123
123
124
+ - name : Install chrome
125
+ run : |
126
+ brew install --cask google-chrome
127
+
124
128
- name : Apply option overrides from matrix for this job for non-release builds
125
129
if : ${{ github.event_name != 'schedule' && github.event_name != 'workflow_dispatch' && matrix.overrides != NaN }}
126
130
env :
@@ -410,6 +414,15 @@ jobs:
410
414
uses : actions/checkout@v4
411
415
with :
412
416
ref : ${{ inputs.ref_name }}
417
+
418
+ - name : Install chrome
419
+ run : |
420
+ sudo apt-get update
421
+ sudo apt-get install -y wget gnupg
422
+ wget -q -O - https://dl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
423
+ sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" > /etc/apt/sources.list.d/google-chrome.list'
424
+ sudo apt-get update
425
+ sudo apt-get install -y google-chrome-stable
413
426
414
427
- name : Dump GitHub context
415
428
env :
You can’t perform that action at this time.
0 commit comments