Revert "Revert "feat: remove monkey"" #15
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: New Sentry Release | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout release | |
- uses: actions/checkout@v3 | |
with: | |
ref: release | |
- name: Sentry Release | |
uses: getsentry/[email protected] | |
env: | |
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }} | |
SENTRY_ORG: ${{ secrets.SENTRY_ORG }} | |
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }} | |
with: | |
environment: production | |
# uses the release PR title as a version | |
version: ${{ github.event.pull_request.title }} | |
# This can safely be removed after one succesful release - previous release hash won't be found in repo as we're squashing this | |
ignore_missing: true | |