mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
22 lines
554 B
YAML
22 lines
554 B
YAML
|
name: "publish release - TraceViewer"
|
||
|
|
||
|
on:
|
||
|
release:
|
||
|
types: [published]
|
||
|
|
||
|
jobs:
|
||
|
publish-trace-viewer:
|
||
|
name: "publish Trace Viewer to trace.playwright.dev"
|
||
|
runs-on: ubuntu-20.04
|
||
|
if: github.repository == 'microsoft/playwright'
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-node@v2
|
||
|
with:
|
||
|
node-version: 16
|
||
|
- run: npm i -g npm@7
|
||
|
- name: Deploy Stable
|
||
|
run: bash utils/build/deploy-trace-viewer.sh --stable
|
||
|
env:
|
||
|
GH_SERVICE_ACCOUNT_TOKEN: ${{ secrets.GH_SERVICE_ACCOUNT_TOKEN }}
|