mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-11 12:33:45 +03:00
0efa4a90cc
As per https://github.com/microsoft/playwright-internal/blob/main/INFRASTRUCTURE.md. Fixes https://github.com/microsoft/playwright/issues/27148.
21 lines
545 B
YAML
21 lines
545 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@v3
|
|
- uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
- name: Deploy Stable
|
|
run: bash utils/build/deploy-trace-viewer.sh --stable
|
|
env:
|
|
GH_SERVICE_ACCOUNT_TOKEN: ${{ secrets.REPOSITORY_DISPATCH_PERSONAL_ACCESS_TOKEN }}
|