diff options
author | 2020-12-19 16:07:46 +0200 | |
---|---|---|
committer | 2020-12-19 16:07:46 +0200 | |
commit | 1a6effd84461000029fe83375bbc429af29935dc (patch) | |
tree | 352bf685ecc112cd6c52cb86d717ef6b5620c5c4 | |
parent | Add Redis and aiohttp integrations to Sentry (diff) |
Create Sentry release workflow
-rw-r--r-- | .github/workflows/sentry_release.yaml | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/sentry_release.yaml b/.github/workflows/sentry_release.yaml new file mode 100644 index 00000000..67447f32 --- /dev/null +++ b/.github/workflows/sentry_release.yaml @@ -0,0 +1,24 @@ +name: Create Sentry release + +on: + push: + branches: + - master + +jobs: + create_sentry_release: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@master + + - name: Create a Sentry.io release + uses: tclindner/[email protected] + env: + SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_ORG: python-discord + SENTRY_PROJECT: sir-lancebot + with: + tagName: ${{ github.sha }} + environment: production + releaseNamePrefix: pydis-sir-lancebot@ |