Release the eBPF Profiler image (#958)

* add release ebpf profiler action

* add changelog entry
This commit is contained in:
Damien Mathieu 2025-05-22 15:10:05 +02:00 committed by GitHub
parent a079dc59f4
commit dbf995a8ea
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 41 additions and 0 deletions

View File

@ -0,0 +1,25 @@
# Use this changelog template to create an entry for release notes.
# One of 'breaking', 'deprecation', 'new_component', 'enhancement', 'bug_fix'
change_type: enhancement
# The name of the component, or a single word describing the area of concern, (e.g. otlpreceiver)
component: ebpf-profiler
# A brief description of the change. Surround your text with quotes ("") if it needs to start with a backtick (`).
note: Build releases of the eBPF profiler distribution
# One or more tracking issues or pull requests related to the change
issues: [958]
# (Optional) One or more lines of additional information to render under the primary note.
# These lines will be padded with 2 spaces and then inserted directly into the document.
# Use pipe (|) for multiline entries.
subtext:
# Optional: The change log or logs in which this entry should be included.
# e.g. '[user]' or '[user, api]'
# Include 'user' if the change is relevant to end users.
# Include 'api' if there is a change to a library API.
# Default: '[user]'
change_logs: [user]

View File

@ -0,0 +1,16 @@
name: Release eBPF Profiler
on:
push:
tags: ["v*"]
jobs:
release:
name: Release ebPF Profiler
uses: ./.github/workflows/base-release.yaml
with:
distribution: otelcol-ebpf-profiler
goos: '[ "linux" ]'
goarch: '[ "amd64" ]'
secrets: inherit
permissions: write-all