diff options
author | 2021-03-26 22:05:45 +0300 | |
---|---|---|
committer | 2021-03-26 22:05:45 +0300 | |
commit | dceb652e246eb46c52cd985b359f28bd472c001d (patch) | |
tree | 24d5c400e54f38f05a56326ec9dbf3bbff161a58 /.github | |
parent | Merge pull request #185 from python-discord/dependabot/npm_and_yarn/webpack-m... (diff) |
Test New Sentry Action
Changes the action used in sentry releases to the one used in other projects such as python-discord/bot, as the current one does not seem to be working. Issue opened upstream at:
https://github.com/getsentry/action-release/issues/47
Diffstat (limited to '.github')
-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@ |