File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Original file line number Diff line number Diff line change 22
22
env :
23
23
NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
24
24
25
+ publish-driver-release :
26
+ name : " publish playwright driver to CDN"
27
+ runs-on : ubuntu-20.04
28
+ if : github.repository == 'microsoft/playwright'
29
+ steps :
30
+ - uses : actions/checkout@v2
31
+ - uses : actions/setup-node@v1
32
+ with :
33
+ node-version : 12.x
34
+ registry-url : ' https://registry.npmjs.org'
35
+ - uses : microsoft/playwright-github-action@v1
36
+ - run : npm ci
37
+ - run : npm run build
38
+ - run : utils/build/build-playwright-driver.sh
39
+ - run : utils/build/upload-playwright-driver.sh
40
+ env :
41
+ AZ_UPLOAD_FOLDER : driver
42
+ AZ_ACCOUNT_KEY : ${{ secrets.AZ_ACCOUNT_KEY }}
43
+ AZ_ACCOUNT_NAME : ${{ secrets.AZ_ACCOUNT_NAME }}
44
+
25
45
publish-docker-release :
26
46
name : " publish to DockerHub"
27
47
# We use `docker push --all-tags` to push all tags which is a newly addition to docker
You can’t perform that action at this time.
0 commit comments