mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 11:55:03 +03:00
Added GitHub Action to notify Sentry of releases
no issue - automates the notification process upon a release published event
This commit is contained in:
parent
f12238b11a
commit
f054976d4f
17
.github/workflows/sentry.yml
vendored
Normal file
17
.github/workflows/sentry.yml
vendored
Normal file
@ -0,0 +1,17 @@
|
||||
name: Sentry
|
||||
on:
|
||||
release:
|
||||
types: [published]
|
||||
jobs:
|
||||
notify:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- uses: tclindner/sentry-releases-action@v1.0.0
|
||||
env:
|
||||
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
||||
SENTRY_ORG: TryGhost
|
||||
SENTRY_PROJECT: Ghost
|
||||
with:
|
||||
tagName: ${{ github.ref }}
|
||||
environment: general
|
Loading…
Reference in New Issue
Block a user