-
Notifications
You must be signed in to change notification settings - Fork 297
119 lines (99 loc) · 4.28 KB
/
publish-packages.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
name: Build, pack, and publish
on:
workflow_dispatch:
push:
tags:
- 'Exporter.*-*'
- 'Extensions.*-*'
- 'Extensions-*'
- 'Instrumentation.*-*'
- 'PersistentStorage-*'
- 'ResourceDetectors.*-*'
- 'Resources.*-*'
- 'Sampler.*-*'
- 'SemanticConventions-*'
workflow_call:
inputs:
tag:
required: true
type: string
outputs:
artifact-id:
value: ${{ jobs.build-pack-publish.outputs.artifact-id }}
artifact-url:
value: ${{ jobs.build-pack-publish.outputs.artifact-url }}
schedule:
- cron: '0 0 * * *' # once in a day at 00:00
permissions:
contents: write
pull-requests: write
jobs:
build-pack-publish:
runs-on: windows-latest
outputs:
artifact-id: ${{ steps.upload-artifacts.outputs.artifact-id }}
artifact-url: ${{ steps.upload-artifacts.outputs.artifact-url }}
steps:
- uses: actions/checkout@v4
with:
# Note: By default GitHub only fetches 1 commit. MinVer needs to find
# the version tag which is typically NOT on the first commit so we
# retrieve them all.
fetch-depth: 0
ref: ${{ inputs.tag || github.ref || 'main' }}
- name: Resolve project
id: resolve-project
shell: pwsh
run: |
Import-Module .\build\scripts\build.psm1
ResolveProjectForTag `
-tag '${{ github.ref_type == 'tag' && github.ref_name || inputs.tag || '' }}'
- name: Setup dotnet
uses: actions/setup-dotnet@v4
- name: dotnet restore ${{ steps.resolve-project.outputs.title }}
run: dotnet restore ${{ steps.resolve-project.outputs.project }}
- name: dotnet build ${{ steps.resolve-project.outputs.title }}
run: dotnet build ${{ steps.resolve-project.outputs.project }} --configuration Release --no-restore -p:Deterministic=true -p:BuildNumber=${{ github.run_number }}
- name: dotnet test ${{ steps.resolve-project.outputs.title }}
run: dotnet test ${{ steps.resolve-project.outputs.project }} --configuration Release --no-restore --no-build
- name: dotnet pack ${{ steps.resolve-project.outputs.title }}
run: dotnet pack ${{ steps.resolve-project.outputs.project }} --configuration Release --no-restore --no-build -p:PackTag=${{ github.ref_type == 'tag' && github.ref_name || inputs.tag || '' }}
- name: Publish Artifacts
id: upload-artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ inputs.tag || github.ref_name }}-packages
path: 'src\**\*.*nupkg'
- name: Publish MyGet
env:
MYGET_TOKEN_EXISTS: ${{ secrets.MYGET_TOKEN != '' }}
if: env.MYGET_TOKEN_EXISTS == 'true' # Skip MyGet publish if run on a fork without the secret
run: |
nuget setApiKey ${{ secrets.MYGET_TOKEN }} -Source https://www.myget.org/F/opentelemetry/api/v2/package
nuget push src\**\*.nupkg -Source https://www.myget.org/F/opentelemetry/api/v2/package
- name: Publish NuGets
env:
NUGET_TOKEN_EXISTS: ${{ secrets.NUGET_TOKEN != '' }}
if: (github.ref_type == 'tag' || inputs.tag) && env.NUGET_TOKEN_EXISTS == 'true' # Skip NuGet publish for scheduled nightly builds or if run on a fork without the secret
run: |
nuget push src\**\*.nupkg -Source https://api.nuget.org/v3/index.json -ApiKey ${{ secrets.NUGET_TOKEN }} -SymbolApiKey ${{ secrets.NUGET_TOKEN }}
- name: Create GitHub Release
if: github.ref_type == 'tag' || inputs.tag
shell: pwsh
run: |
Import-Module .\build\scripts\post-release.psm1
CreateRelease `
-tag '${{ inputs.tag || github.ref_name }}'
env:
GH_TOKEN: ${{ github.token }}
- name: Create GitHub Pull Request to update PackageValidationBaselineVersion in projects
if: |
(github.ref_type == 'tag' && !contains(github.ref_name, '-alpha') && !contains(github.ref_name, '-beta') && !contains(github.ref_name, '-rc'))
|| (inputs.tag && !contains(inputs.tag, '-alpha') && !contains(inputs.tag, '-beta') && !contains(inputs.tag, '-rc'))
shell: pwsh
run: |
Import-Module .\build\scripts\post-release.psm1
CreatePackageValidationBaselineVersionUpdatePullRequest `
-tag '${{ inputs.tag || github.ref_name }}'
env:
GH_TOKEN: ${{ github.token }}