generated from mugnavo/tanstarter
-
Notifications
You must be signed in to change notification settings - Fork 0
39 lines (32 loc) · 919 Bytes
/
sentry.yml
File metadata and controls
39 lines (32 loc) · 919 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: 🔍 Sentry
on:
push:
branches: [main]
jobs:
create-sentry-release:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v5
with:
fetch-depth: 0
- name: Setup Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Increase file descriptor limit
run: ulimit -n 65536
- name: Build
run: bun run build
- name: Create Sentry release
uses: getsentry/action-release@v3
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
with:
environment: production
sourcemaps: ./.vinxi/build/client/_build
release: ${{ github.sha }}
ignore_missing: true
url_prefix: '~/'