Merge pull request #4262 from freelawproject/4246-avoid-unnecessary-p… #5867
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: sentry-release | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
createSentryRelease: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Create a Sentry.io release | |
uses: getsentry/[email protected] | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
SENTRY_ORG: freelawproject | |
SENTRY_PROJECT: courtlistener | |
with: | |
version: ${{ github.sha }} | |
environment: prod |