diff options
Diffstat (limited to '.github/workflows/sentry-release.yaml')
-rw-r--r-- | .github/workflows/sentry-release.yaml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/.github/workflows/sentry-release.yaml b/.github/workflows/sentry-release.yaml new file mode 100644 index 00000000..9df791af --- /dev/null +++ b/.github/workflows/sentry-release.yaml @@ -0,0 +1,21 @@ +name: Create Sentry release + +on: + workflow_call + +jobs: + createSentryRelease: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + - name: Create a Sentry.io release + uses: tclindner/[email protected] + env: + SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_ORG: python-discord + SENTRY_PROJECT: site + with: + tagName: ${{ github.sha }} + environment: production + releaseNamePrefix: site@ |