diff options
author | 2020-12-27 21:57:00 +0200 | |
---|---|---|
committer | 2020-12-27 21:57:00 +0200 | |
commit | cbeda5efe22e9c387405679c4bf784e81e95f66e (patch) | |
tree | 6d332d3220613dcae0d2c86093cefee39f360007 /.github/workflows | |
parent | Add Sentry DNS secrets listing to deployment (diff) |
Create workflow for creating Sentry releases
Diffstat (limited to '.github/workflows')
-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 0000000..243f170 --- /dev/null +++ b/.github/workflows/sentry-release.yml @@ -0,0 +1,24 @@ +name: Create Sentry release + +on: + push: + branches: + - main + +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: forms-backend + with: + tagName: ${{ github.sha }} + environment: production + releaseNamePrefix: forms-backend@ |