From 6b80fdba10692a8ed6db86f9dc39e216a96bf9e4 Mon Sep 17 00:00:00 2001 From: MayGo Date: Wed, 13 Nov 2024 14:53:29 +0200 Subject: [PATCH] use yarn dlx @sentry/cli correctly --- .github/workflows/build.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index f0a66789..2d33dca5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -48,9 +48,6 @@ jobs: - name: Install Yarn Berry run: corepack enable && corepack prepare yarn@stable --activate - - name: Install Sentry CLI - run: yarn dlx @sentry/cli - - name: Get Package Version id: package_version shell: bash @@ -62,8 +59,8 @@ jobs: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: ${{ secrets.SENTRY_ORG }} run: | - sentry-cli releases set-commits "${{ env.PACKAGE_VERSION }}" --commit "${{ github.repository }}@${{ github.sha }}" - sentry-cli releases new "${{ env.PACKAGE_VERSION }}" + yarn dlx @sentry/cli releases set-commits "${{ env.PACKAGE_VERSION }}" --commit "${{ github.repository }}@${{ github.sha }}" + yarn dlx @sentry/cli releases new "${{ env.PACKAGE_VERSION }}" - name: Install Dependencies (Electron) run: |