Merge pull request #33688 from CloneWith/feature/catch-mod-h2w #237
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Add Release to Sentry | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| permissions: | |
| contents: read # to fetch code (actions/checkout) | |
| jobs: | |
| sentry_release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Create Sentry release | |
| uses: getsentry/action-release@v1 | |
| env: | |
| SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
| SENTRY_ORG: ppy | |
| SENTRY_PROJECT: osu | |
| SENTRY_URL: https://sentry.ppy.sh/ | |
| with: | |
| environment: production | |
| version: osu@${{ github.ref_name }} |