mirror of
https://github.com/vector-im/element-call.git
synced 2024-11-15 00:04:59 +08:00
26 lines
623 B
YAML
26 lines
623 B
YAML
name: Build
|
|
on:
|
|
pull_request:
|
|
types:
|
|
- synchronize
|
|
- opened
|
|
- labeled
|
|
paths-ignore:
|
|
- ".github/**"
|
|
- "docs/**"
|
|
push:
|
|
branches: [livekit, full-mesh]
|
|
paths-ignore:
|
|
- ".github/**"
|
|
- "docs/**"
|
|
jobs:
|
|
build_element_call:
|
|
uses: ./.github/workflows/element-call.yaml
|
|
with:
|
|
vite_app_version: ${{ github.event.release.tag_name || github.sha }}
|
|
secrets:
|
|
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
|
|
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
|
|
SENTRY_URL: ${{ secrets.SENTRY_URL }}
|
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|