diff options
author | 2024-07-05 13:22:03 -0700 | |
---|---|---|
committer | 2024-07-05 21:22:03 +0100 | |
commit | ad7a1545cb947ec99c38237fc0087e8cba62b7f2 (patch) | |
tree | 813886c9548d25ab65275c87f77d5c4ac6d319bb /.github | |
parent | Merge pull request #214 from rahul50502a/issue-212 (diff) |
Migration to official Sentry release CI action (#215)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/sentry_release.yaml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/sentry_release.yaml b/.github/workflows/sentry_release.yaml index e28851d..6521c3b 100644 --- a/.github/workflows/sentry_release.yaml +++ b/.github/workflows/sentry_release.yaml @@ -24,12 +24,12 @@ jobs: printf "%s\n" "${version}" - name: Create a Sentry.io release - uses: tclindner/[email protected] + uses: getsentry/action-release@v1 env: SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} SENTRY_ORG: python-discord SENTRY_PROJECT: snekbox with: - tagName: ${{ steps.version.outputs.version }} + version: ${{ steps.version.outputs.version }} environment: production - releaseNamePrefix: snekbox@ + version_prefix: snekbox@ |