feat: add a low default sample ratio (#28) #14
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: Publish | |
on: | |
push: | |
tags: | |
- '*' | |
permissions: | |
contents: write | |
jobs: | |
publish: | |
name: Publish otel extension | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up JDK | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '21' | |
distribution: 'corretto' | |
cache: 'gradle' | |
- name: Build jar | |
run: ./gradlew --no-daemon shadowJar | |
- name: Build jar | |
run: ls -a | |
- name: Upload binaries to release | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: build/libs/otel-extension.jar | |
asset_name: otel-extension | |
tag: ${{ github.ref }} | |
overwrite: true | |
create-change-log: | |
needs: publish | |
name: Create and publish change log | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- name: Run changelog cli action | |
uses: monta-app/changelog-cli-action@main | |
with: | |
service-name: "Open Telemetry Extension" | |
github-release: true | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
jira-app-name: "montaapp" | |
output: "slack" | |
slack-token: ${{ secrets.SLACK_APP_TOKEN }} | |
slack-channel: "#releases,#backend-observability" |