mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
25 lines
703 B
YAML
25 lines
703 B
YAML
|
name: Upload Sentry Sourcemaps
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- develop
|
||
|
|
||
|
jobs:
|
||
|
runs-on: ubuntu-latest
|
||
|
environment: develop
|
||
|
steps:
|
||
|
- uses: actions/checkout@v2
|
||
|
- uses: actions/setup-node@v2
|
||
|
with:
|
||
|
node-version: '14'
|
||
|
cache: 'yarn'
|
||
|
- run: ./scripts/fetch-develop.deps.sh --depth 1
|
||
|
- run: yarn install
|
||
|
- run: ./scripts/ci_package.sh
|
||
|
env:
|
||
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
||
|
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
|
||
|
SENTRY_URL: ${{ secrets.SENTRY_URL }}
|
||
|
SENTRY_ORG: sentry
|
||
|
SENTRY_PROJECT: riot-web
|