Skip to content

Commit bd85786

Browse files
authored
Create sentry-ref.yml
1 parent bc09389 commit bd85786

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/sentry-ref.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
jobs:
9+
release:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- name: Create Sentry release
14+
uses: getsentry/action-release@v1
15+
env:
16+
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
17+
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
18+
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
19+
with:
20+
environment: production
21+
version: ${{ github.ref }}

0 commit comments

Comments
 (0)