From 27762196cd388a1ca52846c227ea86c776937273 Mon Sep 17 00:00:00 2001 From: MayGo Date: Wed, 13 Nov 2024 15:26:39 +0200 Subject: [PATCH] sentry fix --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e404ded6..f02a6913 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -113,9 +113,9 @@ jobs: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: ${{ secrets.SENTRY_ORG }} run: | - sentry-cli releases files "${{ env.PACKAGE_VERSION }}" upload-sourcemaps ./client/build/static/js/ --rewrite --url-prefix "~/dist/static/js" - sentry-cli releases files "${{ env.PACKAGE_VERSION }}" list - sentry-cli releases finalize "${{ env.PACKAGE_VERSION }}" + yarn dlx @sentry/cli releases files "${{ env.PACKAGE_VERSION }}" upload-sourcemaps ./client/build/static/js/ --rewrite --url-prefix "~/dist/static/js" + yarn dlx @sentry/cli releases files "${{ env.PACKAGE_VERSION }}" list + yarn dlx @sentry/cli releases finalize "${{ env.PACKAGE_VERSION }}" - name: Upload Artifacts uses: actions/upload-artifact@v4