diff options
author | 2024-07-05 13:22:20 -0700 | |
---|---|---|
committer | 2024-07-05 21:22:20 +0100 | |
commit | c3ae5d36d3578220708afb26bc9130aba4f3e46a (patch) | |
tree | a57afc79c4ea98010db5da7e962bf60e359444c2 /.github/workflows | |
parent | Merge pull request #1354 from python-discord/dependabot/pip/psycopg-3.2.1 (diff) |
Migration to official Sentry release CI action (#1355)
Diffstat (limited to '.github/workflows')
-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 0cf5ce0b..227d3c89 100644 --- a/.github/workflows/sentry-release.yaml +++ b/.github/workflows/sentry-release.yaml @@ -9,13 +9,13 @@ jobs: steps: - name: Checkout code 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: site with: - tagName: ${{ github.sha }} environment: production - releaseNamePrefix: site@ + version_prefix: site@ |