diff options
author | 2023-03-19 17:51:43 +0100 | |
---|---|---|
committer | 2023-03-19 17:51:43 +0100 | |
commit | 43e83dcfd02ae129939fc4a14b2de0d5fe2f75d6 (patch) | |
tree | 9b5ef1ad776dfbf08e14eec53f26cb58b41f6a97 /.github/workflows/sentry-release.yaml | |
parent | appease linter (diff) |
align sentry-release file ext
Diffstat (limited to '.github/workflows/sentry-release.yaml')
-rw-r--r-- | .github/workflows/sentry-release.yaml | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/.github/workflows/sentry-release.yaml b/.github/workflows/sentry-release.yaml new file mode 100644 index 00000000..6521c389 --- /dev/null +++ b/.github/workflows/sentry-release.yaml @@ -0,0 +1,23 @@ +name: Create Sentry release + +on: + push: + branches: + - main + +jobs: + createSentryRelease: + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v3 + - name: Create a Sentry.io release + uses: tclindner/[email protected] + env: + SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} + SENTRY_ORG: python-discord + SENTRY_PROJECT: site + with: + tagName: ${{ github.sha }} + environment: production + releaseNamePrefix: site@ |