diff options
-rw-r--r-- | .github/workflows/sentry_release.yml | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/.github/workflows/sentry_release.yml b/.github/workflows/sentry_release.yml index b02f41fa3..cead62d55 100644 --- a/.github/workflows/sentry_release.yml +++ b/.github/workflows/sentry_release.yml @@ -12,12 +12,11 @@ jobs: uses: actions/checkout@v4 - 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: bot with: - tagName: ${{ github.sha }} environment: production - releaseNamePrefix: bot@ + version_prefix: bot@ |