Skip to content

Commit

Permalink
feat: sentry release action (#6828)
Browse files Browse the repository at this point in the history
* feat: sentry release action

* feat: monkey patch

* fix: indent

* fix: damn vim indent rug

* feat: use latest

* feat: more monkey

* fix: main over master

* [skip ci] feat: more more monkey

* chore: trigger CI

* chore: trigger CI

* fix: fricking yaml

* chore: trigger CI

* feat: more monkey

* feat: pr title as version

* feat: ignore missing

* feat: remove monkey

* Revert "feat: remove monkey"

This reverts commit 4740cea.

* Revert "Revert "feat: remove monkey""

This reverts commit 5c18bd6.

* feat: rm comment
  • Loading branch information
gomesalexandre committed May 6, 2024
1 parent 0435675 commit dfe5711
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/sentry.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: New Sentry Release
on:
pull_request:
branches: [main]

jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout release
- uses: actions/checkout@v3
with:
ref: release
- name: Sentry Release
uses: getsentry/[email protected]
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
with:
environment: production
# uses the release PR title as a version
version: ${{ github.event.pull_request.title }}
ignore_missing: true

0 comments on commit dfe5711

Please sign in to comment.