mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-01-20 22:42:53 -05:00
Moved Sentry release notification into main release workflow
no issue
This commit is contained in:
parent
90012c473a
commit
cadba8d9cc
2 changed files with 8 additions and 17 deletions
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
|
@ -24,3 +24,11 @@ jobs:
|
||||||
- run: npm publish
|
- run: npm publish
|
||||||
env:
|
env:
|
||||||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
|
- uses: tclindner/sentry-releases-action@v1.0.0
|
||||||
|
env:
|
||||||
|
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
|
||||||
|
SENTRY_ORG: ghost-foundation
|
||||||
|
SENTRY_PROJECT: ghost
|
||||||
|
with:
|
||||||
|
tagName: ${{ github.ref }}
|
||||||
|
environment: general
|
||||||
|
|
17
.github/workflows/sentry.yml
vendored
17
.github/workflows/sentry.yml
vendored
|
@ -1,17 +0,0 @@
|
||||||
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: ghost-foundation
|
|
||||||
SENTRY_PROJECT: ghost
|
|
||||||
with:
|
|
||||||
tagName: ${{ github.ref }}
|
|
||||||
environment: general
|
|
Loading…
Add table
Reference in a new issue