Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 002ad4e

Browse files
committedJan 26, 2025··
one more try
1 parent 53bc3dc commit 002ad4e

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed
 

‎.github/workflows/docker-image.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ jobs:
6161
curl -sL https://sentry.io/get-cli/ | bash
6262
6363
# Define the release version
64-
RELEASE="react-nestjs-boilerplate@${{ env.VERSION }}"
64+
RELEASE="react-nestjs-boilerplate/backend@${{ env.VERSION }}"
6565
6666
# Associate the release with Sentry
6767
sentry-cli releases new "$RELEASE"
@@ -70,14 +70,20 @@ jobs:
7070
sentry-cli releases files "$RELEASE" upload-sourcemaps /sourcemaps-server \
7171
--rewrite --url-prefix "~/assets" --validate
7272
73+
# Finalize the release
74+
sentry-cli releases finalize "$RELEASE"
75+
7376
- name: Upload frontend sourcemaps to Sentry
7477
env:
7578
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
7679
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
7780
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT_FRONTEND }}
7881
run: |
7982
# 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"
8187
8288
# Upload client sourcemaps
8389
sentry-cli releases files "$RELEASE" upload-sourcemaps /sourcemaps-client \

0 commit comments

Comments
 (0)
Please sign in to comment.