Add a hook to get early access to trace object before loading (#169) #104
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build and Publish Perfetto UI | |
| permissions: | |
| contents: write | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - sokatoa | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Set Git Short SHA | |
| id: sha | |
| run: echo "sha_short=$(git rev-parse --short=14 HEAD)" >> $GITHUB_OUTPUT | |
| - name: Install Dependencies | |
| run: tools/install-build-deps --ui | |
| - name: Run Build | |
| run: ui/build | |
| - name: Create Archive | |
| run: zip -r perfetto-ui-${{ steps.sha.outputs.sha_short }}.zip ui/out/dist ui/out/dist_version ui/out/tsc ui/src/gen/protos.* -x "ui/out/tsc/node_modules/*" -x "ui/out/dist/*" -x "ui/out/dist_version/frontend_bundle.*" | |
| - name: Publish Archive | |
| uses: 'marvinpinto/action-automatic-releases@d68defdd11f9dcc7f52f35c1b7c236ee7513bcc1' | |
| with: | |
| repo_token: '${{ secrets.GITHUB_TOKEN }}' | |
| title: 'Perfetto UI - ${{ steps.sha.outputs.sha_short }}' | |
| automatic_release_tag: 'perfetto-ui-${{ steps.sha.outputs.sha_short }}' | |
| files: | | |
| perfetto-ui-${{ steps.sha.outputs.sha_short }}.zip |