Skip to content

feat(otlp): add custom headers support for OTLP exporter #2

feat(otlp): add custom headers support for OTLP exporter

feat(otlp): add custom headers support for OTLP exporter #2

Workflow file for this run

name: Build
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup .NET
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'
- name: Restore dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore
- name: Upload build artifacts
uses: actions/upload-artifact@v4
with:
name: build-output
path: src/Otel4Vsix/bin/Release/
retention-days: 7