diff options
| author | 2020-12-19 15:38:15 +0200 | |
|---|---|---|
| committer | 2020-12-19 15:38:15 +0200 | |
| commit | 4ebbb5db954fb82a66341cbae13ce6db7641f891 (patch) | |
| tree | 6450122d46276732e799128729de5bc1594f4352 | |
| parent | Pump Sentry SDK version from 0.14 to 0.19 (diff) | |
Create workflow for creating Sentry release
| -rw-r--r-- | .github/workflows/sentry_release.yml | 24 | 
1 files changed, 24 insertions, 0 deletions
diff --git a/.github/workflows/sentry_release.yml b/.github/workflows/sentry_release.yml new file mode 100644 index 000000000..b0e6876f8 --- /dev/null +++ b/.github/workflows/sentry_release.yml @@ -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: bot +        with: +          tagName: ${{ github.sha }} +          environment: production +          releaseNamePrefix: pydis-bot@  |