File tree 1 file changed +8
-2
lines changed
1 file changed +8
-2
lines changed Original file line number Diff line number Diff line change 61
61
curl -sL https://sentry.io/get-cli/ | bash
62
62
63
63
# Define the release version
64
- RELEASE="react-nestjs-boilerplate@${{ env.VERSION }}"
64
+ RELEASE="react-nestjs-boilerplate/backend @${{ env.VERSION }}"
65
65
66
66
# Associate the release with Sentry
67
67
sentry-cli releases new "$RELEASE"
@@ -70,14 +70,20 @@ jobs:
70
70
sentry-cli releases files "$RELEASE" upload-sourcemaps /sourcemaps-server \
71
71
--rewrite --url-prefix "~/assets" --validate
72
72
73
+ # Finalize the release
74
+ sentry-cli releases finalize "$RELEASE"
75
+
73
76
- name : Upload frontend sourcemaps to Sentry
74
77
env :
75
78
SENTRY_AUTH_TOKEN : ${{ secrets.SENTRY_AUTH_TOKEN }}
76
79
SENTRY_ORG : ${{ secrets.SENTRY_ORG }}
77
80
SENTRY_PROJECT : ${{ secrets.SENTRY_PROJECT_FRONTEND }}
78
81
run : |
79
82
# Define the release version
80
- RELEASE="react-nestjs-boilerplate@${{ env.VERSION }}"
83
+ RELEASE="react-nestjs-boilerplate/frontend@${{ env.VERSION }}"
84
+
85
+ # Associate the release with Sentry
86
+ sentry-cli releases new "$RELEASE"
81
87
82
88
# Upload client sourcemaps
83
89
sentry-cli releases files "$RELEASE" upload-sourcemaps /sourcemaps-client \
You can’t perform that action at this time.
0 commit comments