diff options
-rw-r--r-- | .github/workflows/create_sentry_release.yml | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/.github/workflows/create_sentry_release.yml b/.github/workflows/create_sentry_release.yml index 4c522e9..e3f6a6b 100644 --- a/.github/workflows/create_sentry_release.yml +++ b/.github/workflows/create_sentry_release.yml @@ -34,26 +34,26 @@ jobs: - name: Create Sentry release (production) if: github.ref == 'refs/heads/main' - uses: getsentry/[email protected] + uses: tclindner/[email protected] env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: python-discord SENTRY_PROJECT: forms-frontend with: environment: production - sourcemaps: ./build/ - version: ${{ steps.commit-sha.outputs.sha }} - version_prefix: forms-frontend@ + sourceMapOptions: '{"include": ["build"]}' + tagName: ${{ steps.commit-sha.outputs.sha }} + releaseNamePrefix: forms-frontend@ - name: Create Sentry release (deploy preview) if: github.ref != 'refs/heads/main' - uses: getsentry/[email protected] + uses: tclindner/[email protected] env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: python-discord SENTRY_PROJECT: forms-frontend with: environment: deploy-preview - sourcemaps: ./build/ - version: ${{ steps.commit-sha.outputs.sha }} - version_prefix: forms-frontend@ + sourceMapOptions: '{"include": ["build"]}' + tagName: ${{ steps.commit-sha.outputs.sha }} + releaseNamePrefix: forms-frontend@ |