Skip to content

Commit 4688956

Browse files
committed
Tweak the GitHub Actions yml files
1 parent 839f4fc commit 4688956

File tree

3 files changed

+13
-6
lines changed

3 files changed

+13
-6
lines changed

.github/workflows/dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: .NET
1+
name: Build and analyze
22

33
on:
44
workflow_dispatch:

.github/workflows/publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: 🚀 Publish NuGet Package
22

33
on:
44
workflow_dispatch:
5-
push:
6-
branches:
7-
- main
5+
# push:
6+
# branches:
7+
# - main
88

99
jobs:
1010
build:
@@ -34,5 +34,5 @@ jobs:
3434
run: dotnet pack ./src/${{ env.ProjectName }}/${{ env.ProjectName }}.csproj --configuration Release --output ./nupkg
3535

3636
- name: 🚀 Publish to NuGet.org
37-
run: dotnet nuget push ./nupkg/*.nupkg --skip-duplicate --source https://int.nugettest.org/v3/index.json # https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
37+
run: dotnet nuget push ./nupkg/*.nupkg --skip-duplicate --source https://apiint.nugettest.org/v3/index.json # https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
3838

src/AStar.Dev.Functional.Extensions/AStar.Dev.Functional.Extensions.csproj

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,8 @@
99
<IncludeSymbols>true</IncludeSymbols>
1010
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
1111
<PackageId>AStar.Dev.Functional.Extensions</PackageId>
12-
<Version>0.1.4-alpha</Version>
12+
<Version>0.2.1-alpha</Version>
13+
<PackageReadmeFile>Readme.md</PackageReadmeFile>
1314
<Authors>Jason</Authors>
1415
<Company>AStar Development</Company>
1516
<Description>F#-inspired Result type with functional combinators, async support, and LINQ integration.</Description>
@@ -22,10 +23,16 @@
2223
<LangVersion>latest</LangVersion>
2324
<Nullable>enable</Nullable>
2425
<IsPackable>true</IsPackable>
26+
<Title>AStar.Dev.Functional.Extensions</Title>
27+
<Copyright>AStar Development 2025</Copyright>
2528
</PropertyGroup>
2629

2730
<ItemGroup>
2831
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" PrivateAssets="All"/>
2932
</ItemGroup>
3033

34+
<ItemGroup>
35+
<None Include="Readme.md" Pack="true" PackagePath="\"/>
36+
</ItemGroup>
37+
3138
</Project>

0 commit comments

Comments
 (0)