Skip to content

Commit a2db5e6

Browse files
chore: generated code for commit 83da9c31. [skip ci]
algolia/api-clients-automation@83da9c3 Co-authored-by: algolia-bot <[email protected]> Co-authored-by: Morgan Leroi <[email protected]>
1 parent 26be13c commit a2db5e6

File tree

4 files changed

+41
-1
lines changed

4 files changed

+41
-1
lines changed

.github/workflows/release.yml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Release packages
2+
3+
on:
4+
push:
5+
branches:
6+
- next
7+
8+
jobs:
9+
release:
10+
name: Publish
11+
runs-on: ubuntu-22.04
12+
if: "startsWith(github.event.head_commit.message, 'chore: release')"
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- name: Setup .NET
17+
uses: actions/setup-dotnet@v4
18+
with:
19+
global-json-file: global.json
20+
21+
- name: Create Nugget package
22+
run: dotnet pack --configuration Release --output nugget
23+
24+
- name: Publish NuGet package
25+
run: dotnet nuget push "nugget/*.nupkg" --api-key "${{ secrets.NUGET_APIKEY }}" --source https://api.nuget.org/v3/index.json --skip-duplicate

algoliasearch/Algolia.Search.csproj

+15
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@
3333
<RootNamespace>Algolia.Search</RootNamespace>
3434
<NoWarn>CS0612;CS1570</NoWarn>
3535
<GenerateAssemblyInfo>false</GenerateAssemblyInfo><!-- setting GenerateAssemblyInfo to false causes this bug https://github.com/dotnet/project-system/issues/3934 -->
36+
<EnablePackageValidation>true</EnablePackageValidation>
37+
<PackageReadmeFile>README.md</PackageReadmeFile>
3638
</PropertyGroup>
3739

3840
<ItemGroup>
@@ -41,4 +43,17 @@
4143
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
4244
</ItemGroup>
4345

46+
<ItemGroup>
47+
<Content Include="..\icon.png">
48+
<Pack>true</Pack>
49+
<PackagePath>/</PackagePath>
50+
<Link>icon.png</Link>
51+
</Content>
52+
<Content Include="..\README.md">
53+
<Pack>true</Pack>
54+
<PackagePath>/</PackagePath>
55+
<Link>README.md</Link>
56+
</Content>
57+
</ItemGroup>
58+
4459
</Project>

global.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"sdk": {
3-
"version": "8.0.0",
3+
"version": "8.0.101",
44
"rollForward": "latestMinor"
55
}
66
}

icon.png

22.6 KB
Loading

0 commit comments

Comments
 (0)