Skip to content
This repository was archived by the owner on Nov 15, 2021. It is now read-only.

Commit 32dcfac

Browse files
committed
add sentry scripts and key for future autotagging plans
1 parent 1aa0b85 commit 32dcfac

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -101,3 +101,4 @@ coverity.zip
101101
/OpenCover.Test.ProfilerCoverage.xml
102102
/main/after.opencover.sln.targets
103103
/LastCoverageResults.log
104+
sentry.txt

appveyor.yml

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,8 @@ environment:
1111
secure: lgy4M/uQ9jMlxmPzTIYWVE2GggvPntq6kfpO6Z0pjAs=
1212
SONARQUBE_TOKEN:
1313
secure: WRLqxS8frIuLNHeSMOj6SXvR3S0gx3RM0bgGkWeglXMIPSVS/VNmfUEqdHYZ2QOB
14+
SENTRY_AUTH_TOKEN:
15+
secure: W0fnI9J0+0b6H0PG3qHxVNNqSveCKifDPGk3q2rWIqH2v9WGCoASqOO00wa1YD6sU9JS8iDM5on5FD3t2awm/BImRJ5ZHJV7e3pqisdb1jM=
1416
cache:
1517
- build/Version/opencover.snk
1618
- build/Version/opencover.public.snk

sentry.bat

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
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=

0 commit comments

Comments
 (0)