File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed
Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change 1414 runs-on : ubuntu-latest
1515 steps :
1616
17- - name : Install Chromium
18- run : sudo apt-get install -y chromium-browser
17+ - name : Install Chrome
18+ run : |
19+ sudo apt-get update
20+ sudo apt-get install -y wget gnupg
21+ wget -q -O - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
22+ sudo sh -c 'echo "deb [arch=amd64] http://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
23+ sudo apt-get update
24+ sudo apt-get install -y google-chrome-stable
1925
2026 - name : Checkout
2127 uses : actions/checkout@v4
4349 run : make build
4450
4551 - name : Scrape Astra
46- run : ./api-tools -scrape -astra
52+ env :
53+ CHROME_BIN : /usr/bin/google-chrome
54+ run : |
55+ xvfb-run --auto-servernum ./api-tools -scrape -astra
4756
4857# - name: Parse Astra
4958# run: ./api-tools -parse -astra
You can’t perform that action at this time.
0 commit comments