This repository was archived by the owner on Nov 15, 2021. It is now read-only.
Commit 32dcfac 1 parent 1aa0b85 commit 32dcfac Copy full SHA for 32dcfac
File tree 3 files changed +21
-0
lines changed
3 files changed +21
-0
lines changed Original file line number Diff line number Diff line change @@ -101,3 +101,4 @@ coverity.zip
101
101
/OpenCover.Test.ProfilerCoverage.xml
102
102
/main /after.opencover.sln.targets
103
103
/LastCoverageResults.log
104
+ sentry.txt
Original file line number Diff line number Diff line change @@ -11,6 +11,8 @@ environment:
11
11
secure : lgy4M/uQ9jMlxmPzTIYWVE2GggvPntq6kfpO6Z0pjAs=
12
12
SONARQUBE_TOKEN :
13
13
secure : WRLqxS8frIuLNHeSMOj6SXvR3S0gx3RM0bgGkWeglXMIPSVS/VNmfUEqdHYZ2QOB
14
+ SENTRY_AUTH_TOKEN :
15
+ secure : W0fnI9J0+0b6H0PG3qHxVNNqSveCKifDPGk3q2rWIqH2v9WGCoASqOO00wa1YD6sU9JS8iDM5on5FD3t2awm/BImRJ5ZHJV7e3pqisdb1jM=
14
16
cache :
15
17
- build/Version/opencover.snk
16
18
- build/Version/opencover.public.snk
Original file line number Diff line number Diff line change
1
+ @ echo off
2
+ REM Assumes you're in a git repository
3
+ REM set SENTRY_AUTH_TOKEN=...
4
+ set SENTRY_ORG = opencover
5
+
6
+ for /f " delims=" %%a in ('sentry-cli releases propose-version') do @ set VERSION = %%a
7
+
8
+ echo %VERSION%
9
+
10
+ REM Create a release
11
+ sentry-cli releases new -p opencover %VERSION%
12
+
13
+ REM Associate commits with the release
14
+ sentry-cli releases set-commits --auto %VERSION%
15
+
16
+ set SENTRY_AUTH_TOKEN =
17
+ set SENTRY_ORG =
18
+ set VERSION =
You can’t perform that action at this time.
0 commit comments