diff options
author | 2021-04-04 11:08:29 +0300 | |
---|---|---|
committer | 2021-04-04 11:08:29 +0300 | |
commit | 464dec5373d6ba885ee0fc72115fb5e56d3ad874 (patch) | |
tree | 24d5c400e54f38f05a56326ec9dbf3bbff161a58 | |
parent | Merge pull request #185 from python-discord/dependabot/npm_and_yarn/webpack-m... (diff) | |
parent | Test New Sentry Action (diff) |
Merge pull request #206 from python-discord/sentry-action
Change Sentry Action
-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@ |