1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 16:07:24 +08:00

Merge pull request #18304 from ThePooN/action-sentry-release

👷 Push tagged releases to Sentry
This commit is contained in:
Dean Herbert 2022-05-17 01:31:45 +09:00 committed by GitHub
commit 6f7c675dfe
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

26
.github/workflows/sentry-release.yml vendored Normal file
View File

@ -0,0 +1,26 @@
name: Add Release to Sentry
on:
push:
tags:
- '*'
jobs:
sentry_release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Create Sentry release
uses: getsentry/action-release@v1
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ppy
SENTRY_PROJECT: osu
SENTRY_URL: https://sentry.ppy.sh/
with:
environment: production
version: ${{ github.ref }}