Skip to content

Merge pull request #3427 from 1c-syntax/feature/polish-callHierarchy #989

Merge pull request #3427 from 1c-syntax/feature/polish-callHierarchy

Merge pull request #3427 from 1c-syntax/feature/polish-callHierarchy #989

Workflow file for this run

name: Sentry
on:
push:
branches-ignore:
- "translations_**"
- "dependabot/**"
tags:
- 'v*'
jobs:
sentry:
name: Sentry
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
java-version: 21
distribution: 'temurin'
cache: gradle
- name: Get version from Gradle
id: get_version
run: echo "RELEASE_VERSION=$(./gradlew version -q)" >> $GITHUB_ENV
- name: Create Sentry release
uses: getsentry/action-release@v1
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
SENTRY_ORG: ${{ secrets.SENTRY_ORG }}
SENTRY_PROJECT: ${{ secrets.SENTRY_PROJECT }}
with:
environment: production
version: ${{ env.RELEASE_VERSION }}