-
Notifications
You must be signed in to change notification settings - Fork 1
55 lines (50 loc) · 1.22 KB
/
release.yml
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Create Sentry release
on:
push:
branches:
- prod
paths:
- frontend/**
- queue/**
- server/**
- packages/**
jobs:
deploy-front-production:
uses: ./.github/workflows/deploy.yml
with:
app: Front production
alias: front-production
branch: prod
environment: Production
secrets: inherit
deploy-api-production:
uses: ./.github/workflows/deploy.yml
with:
app: API production
alias: api-production
branch: prod
secrets: inherit
deploy-queue-production:
uses: ./.github/workflows/deploy.yml
with:
app: Queue production
alias: queue-production
branch: prod
secrets: inherit
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Create Sentry release
uses: getsentry/action-release@v1
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
SENTRY_URL: ${{ secrets.SENTRY_URL }}
with:
environment: production
sourcemaps: 'dist/**/*.map'