diff --git a/.gitea/workflows/execute.yml b/.gitea/workflows/execute.yml index 3328bbe..963d9de 100644 --- a/.gitea/workflows/execute.yml +++ b/.gitea/workflows/execute.yml @@ -23,13 +23,19 @@ jobs: python -m pip install -r requirements.txt mkdir drivers - - name: EdgeDriver for Linux + - name: Install Edge and EdgeDriver for Linux if: runner.os == 'Linux' run: | wget https://msedgedriver.azureedge.net/${EDGEDRIVER_VERSION}/edgedriver_linux64.zip unzip edgedriver_linux64.zip mv msedgedriver drivers - apt search msedge + + curl https://packages.microsoft.com/keys/microsoft.asc | gpg --dearmor > microsoft.gpg + install -o root -g root -m 644 microsoft.gpg /etc/apt/trusted.gpg.d/ + sh -c 'echo "deb [arch=amd64] https://packages.microsoft.com/repos/edge stable main" > /etc/apt/sources.list.d/microsoft-edge-dev.list' + sudo rm microsoft.gpg + apt update + apt install microsoft-edge-stable - name: EdgeDriver for Windows if: runner.os == 'Windows'