File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
.github/actions/setup-chrome Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -31,10 +31,17 @@ runs:
3131 if [ -n "$CHROME_VERSION" ]; then
3232 sudo apt-get update
3333 sudo apt-get -y install libu2f-udev
34- curl -L "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}-1_amd64.deb" > /tmp/chrome.deb
35- sudo dpkg -i /tmp/chrome.deb
36- unlink /tmp/chrome.deb
34+
35+ mkdir google-chrome-setup
36+ pushd google-chrome-setup
37+ npm init -y
38+ npm set //npm.pkg.github.com/:_authToken="${{ github.token }}"
39+ npm i @devexpress/[email protected] --registry=https://npm.pkg.github.com 40+ sudo dpkg -i node_modules/@devexpress/devextreme-google-chrome-image/google-chrome-stable_121.0.6167.184-1_amd64.deb
3741 google-chrome-stable --version
42+ popd
43+
44+ rm -rf google-chrome-setup
3845 else
3946 echo "Skip Chrome upgrade"
4047 fi
You can’t perform that action at this time.
0 commit comments