1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-08 09:17:50 +08:00
osu-lazer/.github/workflows/sentry-release.yml
Hugo "ThePooN" Denizart d7aed77340 👷 Push tagged releases to Sentry
2022-05-16 16:01:42 +02:00

27 lines
562 B
YAML

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 }}