mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-12 17:04:57 +00:00
13 lines
510 B
YAML
13 lines
510 B
YAML
name: 'Install Google Chrome'
|
|
description: 'Install Google Chrome'
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Install google chrome
|
|
shell: bash
|
|
run: |
|
|
wget -q https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_114.0.5735.133-1_amd64.deb
|
|
sudo apt install -y --allow-downgrades ./google-chrome-stable_114.0.5735.133-1_amd64.deb
|
|
sudo ln -s /usr/bin/google-chrome /usr/bin/chrome
|
|
chrome --version |