File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 74
74
with :
75
75
environment : development
76
76
version : ${{ env.EDGE_TAG }}
77
+ version_prefix : " devbox@"
77
78
- name : Publish snapshot release to GitHub
78
79
uses : softprops/action-gh-release@v1
79
80
with :
@@ -119,6 +120,7 @@ jobs:
119
120
with :
120
121
environment : production
121
122
version : ${{ github.ref }}
123
+ version_prefix : " devbox@"
122
124
- name : Release with goreleaser
123
125
uses : goreleaser/goreleaser-action@v3
124
126
with :
Original file line number Diff line number Diff line change @@ -39,7 +39,7 @@ func initSentryClient(appName string) bool {
39
39
err := sentry .Init (sentry.ClientOptions {
40
40
Dsn : build .SentryDSN ,
41
41
Environment : environment ,
42
- Release : build .Version ,
42
+ Release : appName + "@" + build .Version ,
43
43
Transport : transport ,
44
44
TracesSampleRate : 1 ,
45
45
BeforeSend : func (event * sentry.Event , _ * sentry.EventHint ) * sentry.Event {
You can’t perform that action at this time.
0 commit comments