Merge pull request #4536 from ttys0dev/fix-restricted-attachments #5446
This file contains 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: sentry-release | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
createSentryRelease: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Create a Sentry.io release | |
uses: getsentry/action-release@v1.7.0 | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
SENTRY_ORG: freelawproject | |
SENTRY_PROJECT: courtlistener | |
with: | |
version: ${{ github.sha }} | |
environment: prod |