diff options
author | 2024-07-05 13:21:16 -0700 | |
---|---|---|
committer | 2024-07-05 21:21:16 +0100 | |
commit | 6f1732919bd8ccdffa00fb97bba1fecf92178459 (patch) | |
tree | cb415eb92b00afb283f157fa03edb38082c2b83a | |
parent | Update test to reflect new green (diff) |
Migration to official Sentry release CI action (#633)
-rw-r--r-- | .github/workflows/create_sentry_release.yml | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/.github/workflows/create_sentry_release.yml b/.github/workflows/create_sentry_release.yml index 96879c1..f47d42f 100644 --- a/.github/workflows/create_sentry_release.yml +++ b/.github/workflows/create_sentry_release.yml @@ -35,26 +35,24 @@ jobs: - name: Create Sentry release (production) if: github.ref == 'refs/heads/main' - uses: tclindner/[email protected] + uses: getsentry/action-release@v1 env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: python-discord SENTRY_PROJECT: forms-frontend with: environment: production - sourceMapOptions: '{"include": ["build"]}' - tagName: ${{ steps.commit-sha.outputs.sha }} - releaseNamePrefix: forms-frontend@ + sourcemaps: './build' + version_prefix: forms-frontend@ - name: Create Sentry release (deploy preview) if: github.ref != 'refs/heads/main' - uses: tclindner/[email protected] + uses: getsentry/action-release@v1 env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: python-discord SENTRY_PROJECT: forms-frontend with: environment: deploy-preview - sourceMapOptions: '{"include": ["build"]}' - tagName: ${{ steps.commit-sha.outputs.sha }} - releaseNamePrefix: forms-frontend@ + sourcemaps: './build' + version_prefix: forms-frontend@ |