forked from WatWowMap/ReactMap
-
Notifications
You must be signed in to change notification settings - Fork 0
30 lines (27 loc) · 748 Bytes
/
sentry.yml
File metadata and controls
30 lines (27 loc) · 748 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
name: Sentry
on:
release:
types: [created, published, prereleased, released]
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
id: checkout-code
uses: actions/checkout@v4.1.1
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v4.0.2
with:
node-version: 18
cache: yarn
- name: Install Dependencies
run: yarn
- name: Sentry Build
run: yarn release
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}