-
Notifications
You must be signed in to change notification settings - Fork 0
286 lines (243 loc) · 10.2 KB
/
release.yml
File metadata and controls
286 lines (243 loc) · 10.2 KB
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
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
name: Release
on:
push:
branches: [ main ]
workflow_dispatch:
env:
DOTNET_VERSION: '10.0.x'
NODE_VERSION: '22'
jobs:
build:
name: Build and Test
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version.outputs.version }}
agent_framework_version: ${{ steps.version.outputs.agent_framework_version }}
steps:
- name: Checkout
uses: actions/[email protected]
with:
submodules: recursive
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Setup Node.js
uses: actions/[email protected]
with:
node-version: ${{ env.NODE_VERSION }}
- name: Install Gemini CLI
shell: bash
run: |
npm install --no-save @google/gemini-cli
echo "$GITHUB_WORKSPACE/node_modules/.bin" >> "$GITHUB_PATH"
- name: Extract version from Directory.Build.props
id: version
run: |
VERSION=$(grep -oPm1 "(?<=<Version>)[^<]+" Directory.Build.props)
if [ -z "$VERSION" ]; then
echo "Failed to resolve package version from Directory.Build.props"
exit 1
fi
AGENT_FRAMEWORK_VERSION="$VERSION-rc4"
echo "version=$VERSION" >> "$GITHUB_OUTPUT"
echo "agent_framework_version=$AGENT_FRAMEWORK_VERSION" >> "$GITHUB_OUTPUT"
echo "Version from Directory.Build.props: $VERSION"
echo "Agent Framework package version: $AGENT_FRAMEWORK_VERSION"
- name: Validate semantic version
run: |
VERSION="${{ steps.version.outputs.version }}"
AGENT_FRAMEWORK_VERSION="${{ steps.version.outputs.agent_framework_version }}"
if [[ ! "$VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[0-9A-Za-z.-]+)?(\+[0-9A-Za-z.-]+)?$ ]]; then
echo "Version '$VERSION' is not a valid semantic version."
exit 1
fi
if [[ ! "$AGENT_FRAMEWORK_VERSION" =~ ^[0-9]+\.[0-9]+\.[0-9]+(-[0-9A-Za-z.-]+)?(\+[0-9A-Za-z.-]+)?$ ]]; then
echo "Agent Framework version '$AGENT_FRAMEWORK_VERSION' is not a valid semantic version."
exit 1
fi
- name: Restore dependencies
run: dotnet restore ManagedCode.GeminiSharpSDK.slnx
- name: Build
run: dotnet build ManagedCode.GeminiSharpSDK.slnx --configuration Release --warnaserror --no-restore
- name: Test (full solution)
run: dotnet test --solution ManagedCode.GeminiSharpSDK.slnx --configuration Release --no-build -- --treenode-filter "/*/*/*/*[RequiresGeminiAuth!=true]"
- name: Gemini CLI smoke tests
run: dotnet test --project GeminiSharpSDK.Tests/GeminiSharpSDK.Tests.csproj --configuration Release --no-build -- --treenode-filter "/*/*/*/GeminiCli_Smoke_*"
- name: Pack NuGet packages
run: |
mkdir -p ./artifacts
dotnet pack ManagedCode.GeminiSharpSDK.slnx --configuration Release --no-build -p:IncludeSymbols=false -p:SymbolPackageFormat=snupkg --output ./artifacts
- name: Validate packed artifacts
run: |
VERSION="${{ steps.version.outputs.version }}"
AGENT_FRAMEWORK_VERSION="${{ steps.version.outputs.agent_framework_version }}"
find ./artifacts -maxdepth 1 -name '*.nupkg' | sort
test -f "./artifacts/ManagedCode.GeminiSharpSDK.$VERSION.nupkg"
test -f "./artifacts/ManagedCode.GeminiSharpSDK.Extensions.AI.$VERSION.nupkg"
test -f "./artifacts/ManagedCode.GeminiSharpSDK.Extensions.AgentFramework.$AGENT_FRAMEWORK_VERSION.nupkg"
- name: Upload artifacts
uses: actions/[email protected]
with:
name: nuget-packages
path: ./artifacts/*.nupkg
retention-days: 5
publish-nuget:
name: Publish to NuGet
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main'
outputs:
published: ${{ steps.publish.outputs.published }}
version: ${{ needs.build.outputs.version }}
agent_framework_version: ${{ needs.build.outputs.agent_framework_version }}
steps:
- name: Checkout
uses: actions/[email protected]
- name: Download artifacts
uses: actions/[email protected]
with:
name: nuget-packages
path: ./artifacts
- name: Setup .NET
uses: actions/[email protected]
with:
dotnet-version: ${{ env.DOTNET_VERSION }}
- name: Publish to NuGet
id: publish
continue-on-error: true
run: |
set +e
OUTPUT=""
PUBLISHED=false
for package in ./artifacts/*.nupkg; do
echo "Publishing $package..."
RESULT=$(dotnet nuget push "$package" \
--api-key ${{ secrets.NUGET_API_KEY }} \
--source https://api.nuget.org/v3/index.json \
--skip-duplicate 2>&1)
EXIT_CODE=$?
echo "$RESULT"
OUTPUT="$OUTPUT$RESULT"
if [ $EXIT_CODE -eq 0 ]; then
echo "Successfully published $package"
PUBLISHED=true
elif echo "$RESULT" | grep -qi "already exists"; then
echo "Package already exists, skipping..."
else
echo "Failed to publish $package"
exit 1
fi
done
if [ "$PUBLISHED" = true ] || echo "$OUTPUT" | grep -q "Your package was pushed"; then
echo "published=true" >> "$GITHUB_OUTPUT"
echo "At least one package was successfully published"
else
echo "published=false" >> "$GITHUB_OUTPUT"
echo "No new packages were published (all already exist)"
fi
create-release:
name: Create GitHub Release and Tag
needs: publish-nuget
runs-on: ubuntu-latest
if: needs.publish-nuget.outputs.published == 'true'
steps:
- name: Checkout
uses: actions/[email protected]
with:
fetch-depth: 0
token: ${{ secrets.GITHUB_TOKEN }}
- name: Download artifacts
uses: actions/[email protected]
with:
name: nuget-packages
path: ./artifacts
- name: Create and push tag
id: create_tag
run: |
VERSION="${{ needs.publish-nuget.outputs.version }}"
TAG="v$VERSION"
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
if git rev-parse "$TAG" >/dev/null 2>&1; then
echo "Tag $TAG already exists"
echo "tag_exists=true" >> "$GITHUB_OUTPUT"
else
echo "Creating tag $TAG"
git tag -a "$TAG" -m "Release $VERSION"
git push origin "$TAG"
echo "tag_exists=false" >> "$GITHUB_OUTPUT"
fi
- name: Get previous tag
id: prev_tag
run: |
CURRENT_TAG="v${{ needs.publish-nuget.outputs.version }}"
PREVIOUS_TAG=$(git tag --sort=-version:refname | grep -A1 "^$CURRENT_TAG$" | tail -n1 || echo "")
if [ "$PREVIOUS_TAG" = "$CURRENT_TAG" ] || [ -z "$PREVIOUS_TAG" ]; then
PREVIOUS_TAG=$(git tag --sort=-version:refname | grep -v "^$CURRENT_TAG$" | head -n1 || echo "")
fi
echo "previous_tag=$PREVIOUS_TAG" >> "$GITHUB_OUTPUT"
echo "Current tag: $CURRENT_TAG"
echo "Previous tag: $PREVIOUS_TAG"
- name: Generate release notes
id: release_notes
run: |
VERSION="${{ needs.publish-nuget.outputs.version }}"
AGENT_FRAMEWORK_VERSION="${{ needs.publish-nuget.outputs.agent_framework_version }}"
CURRENT_TAG="v$VERSION"
PREVIOUS_TAG="${{ steps.prev_tag.outputs.previous_tag }}"
echo "# Release $VERSION" > release_notes.md
echo "" >> release_notes.md
echo "Released on $(date +'%Y-%m-%d')" >> release_notes.md
echo "" >> release_notes.md
if [ -n "$PREVIOUS_TAG" ]; then
echo "## Changes since $PREVIOUS_TAG" >> release_notes.md
echo "" >> release_notes.md
echo "### Features" >> release_notes.md
git log --pretty=format:"- %s (%h)" "$PREVIOUS_TAG"..HEAD --grep="^feat" --grep="^feature" >> release_notes.md || true
echo "" >> release_notes.md
echo "### Bug Fixes" >> release_notes.md
git log --pretty=format:"- %s (%h)" "$PREVIOUS_TAG"..HEAD --grep="^fix" --grep="^bugfix" >> release_notes.md || true
echo "" >> release_notes.md
echo "### Documentation" >> release_notes.md
git log --pretty=format:"- %s (%h)" "$PREVIOUS_TAG"..HEAD --grep="^docs" --grep="^doc" >> release_notes.md || true
echo "" >> release_notes.md
echo "### Other Changes" >> release_notes.md
git log --pretty=format:"- %s (%h)" "$PREVIOUS_TAG"..HEAD --invert-grep --grep="^feat" --grep="^feature" --grep="^fix" --grep="^bugfix" --grep="^docs" --grep="^doc" >> release_notes.md || true
echo "" >> release_notes.md
else
echo "## Initial Release" >> release_notes.md
echo "" >> release_notes.md
echo "### Recent Changes" >> release_notes.md
git log --pretty=format:"- %s (%h)" --max-count=20 >> release_notes.md
echo "" >> release_notes.md
fi
echo "" >> release_notes.md
echo "## NuGet Packages" >> release_notes.md
echo "" >> release_notes.md
shopt -s nullglob
for package in ./artifacts/*.nupkg; do
base_name=$(basename "$package" .nupkg)
if [[ "$base_name" =~ ^(.+)\.([0-9]+\.[0-9]+\.[0-9]+(-[0-9A-Za-z.-]+)?(\+[0-9A-Za-z.-]+)?)$ ]]; then
PACKAGE_ID="${BASH_REMATCH[1]}"
PACKAGE_VERSION="${BASH_REMATCH[2]}"
echo "- [$PACKAGE_ID v$PACKAGE_VERSION](https://www.nuget.org/packages/$PACKAGE_ID/$PACKAGE_VERSION)" >> release_notes.md
else
echo "- $base_name" >> release_notes.md
fi
done
echo "" >> release_notes.md
echo "---" >> release_notes.md
echo "*This release was automatically created by GitHub Actions*" >> release_notes.md
- name: Create GitHub Release
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
TAG="v${{ needs.publish-nuget.outputs.version }}"
if gh release view "$TAG" >/dev/null 2>&1; then
echo "GitHub release $TAG already exists"
else
gh release create "$TAG" ./artifacts/*.nupkg \
--title "$TAG" \
--notes-file release_notes.md
fi