Created
April 20, 2021 14:39
-
-
Save colbyfayock/a068e67143798ac88b240aba63f0f2b9 to your computer and use it in GitHub Desktop.
GitHub Actions - Installing a specific version of Chrome
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Follow instructions under "Old Builds" here: https://www.chromium.org/getting-involved/download-chromium | |
# Add the version number in the variable below and run the step before needed | |
# "-1" may not show in the actual version number | |
steps: | |
- run: | | |
VERSION_STRING="88.0.4324.96-1" | |
wget "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${VERSION_STRING}_amd64.deb" | |
sudo dpkg -i "google-chrome-stable_${VERSION_STRING}_amd64.deb" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment