Skip to content

Commit a7dbc6f

Browse files
authored
Add OTel and AppInsights release options (#3060)
1 parent f31bf5b commit a7dbc6f

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

eng/ci/official-release.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ parameters:
1010
values:
1111
- core
1212
- sdk
13+
- application-insights
14+
- open-telemetry
1315

1416
pr: none
1517
trigger: none
@@ -41,6 +43,8 @@ variables:
4143
value: |
4244
Microsoft.Azure.Functions.Worker.*.nupkg
4345
!Microsoft.Azure.Functions.Worker.Sdk.*.nupkg
46+
!Microsoft.Azure.Functions.Worker.ApplicationInsights.*.nupkg
47+
!Microsoft.Azure.Functions.Worker.OpenTelemetry.*.nupkg
4448
!*.symbols.nupkg
4549
4650
- ${{ if eq(parameters.packages, 'sdk') }}:
@@ -53,6 +57,26 @@ variables:
5357
Microsoft.Azure.Functions.Worker.Sdk.*.nupkg
5458
!*.symbols.nupkg
5559
60+
- ${{ if eq(parameters.packages, 'application-insights') }}:
61+
- name: target_folder
62+
value: azure-functions/dotnet/worker-app-insights
63+
- name: package_name
64+
value: Microsoft.Azure.Functions.Worker.ApplicationInsights
65+
- name: package_pattern
66+
value: |
67+
Microsoft.Azure.Functions.Worker.ApplicationInsights.*.nupkg
68+
!*.symbols.nupkg
69+
70+
- ${{ if eq(parameters.packages, 'open-telemetry') }}:
71+
- name: target_folder
72+
value: azure-functions/dotnet/worker-open-telemetry
73+
- name: package_name
74+
value: Microsoft.Azure.Functions.Worker.OpenTelemetry
75+
- name: package_pattern
76+
value: |
77+
Microsoft.Azure.Functions.Worker.OpenTelemetry.*.nupkg
78+
!*.symbols.nupkg
79+
5680
extends:
5781
template: v1/1ES.Official.PipelineTemplate.yml@1es
5882
parameters:

0 commit comments

Comments
 (0)