1
0
mirror of synced 2026-08-31 19:55:37 +00:00

chore: generate api using the newest api.json (#67)

This commit is contained in:
Yury Semikhatsky
2020-11-02 18:49:09 -08:00
committed by GitHub
parent f05f044c2f
commit 463435c992
19 changed files with 512 additions and 9 deletions
+4 -4
View File
@@ -29,16 +29,16 @@ jobs:
run: |
FILE_NAME="unkwnown"
if [[ $OS == *"ubuntu"* ]]; then
FILE_NAME=playwright-cli-0.151.0-linux.zip
FILE_NAME=playwright-cli-0.160.0-next.1604357190081-linux.zip
fi
if [[ $OS == *"macos"* ]]; then
FILE_NAME=playwright-cli-0.151.0-mac.zip
FILE_NAME=playwright-cli-0.160.0-next.1604357190081-mac.zip
fi
if [[ $OS == *"windows"* ]]; then
FILE_NAME=playwright-cli-0.151.0-win32_x64.zip
FILE_NAME=playwright-cli-0.160.0-next.1604357190081-win32_x64.zip
fi
echo "Downloading from $FILE_NAME"
curl -O https://playwright.azureedge.net/builds/cli/$FILE_NAME
curl -O https://playwright.azureedge.net/builds/cli/next/$FILE_NAME
unzip $FILE_NAME -d .
./playwright-cli install
- name: Build with Maven