element-web/.github/workflows/build_develop.yaml
2022-04-27 22:50:28 +01:00

21 lines
646 B
YAML

# Separate to the main build workflow for access to the develop
# secrets environment, reuses the build workflow for heavy lifting.
name: Build and upload sourcemaps to Sentry
on:
push:
branches: [ develop ]
repository_dispatch:
types: [ element-web-notify ]
jobs:
build:
name: "Build"
environment: develop
runs-on: ubuntu-latest
steps:
- uses: ./.github/workflows/build
secrets:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
SENTRY_URL: ${{ secrets.SENTRY_URL }}
SENTRY_ORG: sentry
SENTRY_PROJECT: riot-web