[release-v2.7] Add doc for max_span_attr_byte and restructure trouble… #7
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-technical-documentation-release | |
on: | |
push: | |
branches: | |
- release-* | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
paths: | |
- 'docs/sources/tempo/**' | |
workflow_dispatch: | |
jobs: | |
sync: | |
if: github.repository == 'grafana/tempo' | |
permissions: | |
contents: read | |
id-token: write | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: grafana/writers-toolkit/publish-technical-documentation-release@publish-technical-documentation-release/v1 | |
with: | |
release_tag_regexp: "^v(\\d+)\\.(\\d+)\\.(\\d+)$" | |
release_branch_regexp: "^release-v(\\d+)\\.(\\d+)$" | |
release_branch_with_patch_regexp: "^release-v(\\d+)\\.(\\d+)\\.(\\d+)$" | |
source_directory: docs/sources/tempo | |
website_directory: content/docs/tempo |