File tree 4 files changed +30
-19
lines changed
DotFastLZ.Packaging.Tools
4 files changed +30
-19
lines changed Original file line number Diff line number Diff line change 47
47
run : dotnet test -c Release --no-build --verbosity normal
48
48
49
49
- name : Pack
50
- run : |
51
- PACK_OPTIONS="/p:Authors=ikpil"
52
- PACK_OPTIONS+=" /p:Description=\"Small & portable byte-aligned LZ77 compression for C#\""
53
- PACK_OPTIONS+=" /p:RepositoryType=git"
54
- PACK_OPTIONS+=" /p:PackageProjectUrl=https://github.com/ikpil/DotFastLZ"
55
- PACK_OPTIONS+=" /p:RepositoryUrl=https://github.com/ikpil/DotFastLZ"
56
- PACK_OPTIONS+=" /p:PackageTags=\"compression fastlz unity3d lz77\""
57
- dotnet pack $PACK_OPTIONS /p:PackageVersion=${{ github.event.inputs.version }} -c Release --nologo --output working-nuget
50
+ run : dotnet pack -p:PackageVersion=${{ github.event.inputs.version }} -c Release --nologo --output working-nuget
58
51
59
52
- name : Publish the package to nuget.org
60
53
run : dotnet nuget push ./working-nuget/*.nupkg -k $NUGET_AUTH_TOKEN -s https://api.nuget.org/v3/index.json
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
- <PropertyGroup >
4
- <TargetFramework >netstandard2.1</TargetFramework >
5
- <PackageId >DotFastLZ.Compression</PackageId >
6
- <PackageReadmeFile >README.md</PackageReadmeFile >
7
- </PropertyGroup >
3
+ <PropertyGroup >
4
+ <TargetFramework >netstandard2.1</TargetFramework >
5
+ <PackageId >DotFastLZ.Compression</PackageId >
6
+ <PackageReadmeFile >README.md</PackageReadmeFile >
7
+ <Authors >ikpil</Authors >
8
+ <Description >Small and portable byte-aligned LZ77 compression for C#</Description >
9
+ <RepositoryType >git</RepositoryType >
10
+ <PackageProjectUrl >https://github.com/ikpil/DotFastLZ</PackageProjectUrl >
11
+ <RepositoryUrl >https://github.com/ikpil/DotFastLZ</RepositoryUrl >
12
+ <PackageTags >compression fastlz unity3d lz77</PackageTags >
13
+ </PropertyGroup >
8
14
9
- <ItemGroup >
10
- <None Include =" ../../README.md" Pack =" true" PackagePath =" \" />
11
- </ItemGroup >
15
+ <ItemGroup >
16
+ <None Include =" ../../README.md" Pack =" true" PackagePath =" \" />
17
+ </ItemGroup >
12
18
13
19
</Project >
Original file line number Diff line number Diff line change 6
6
<AssemblyName >6pack</AssemblyName >
7
7
<PackageId >DotFastLZ.Packaging.Tools</PackageId >
8
8
<PackageReadmeFile >README.md</PackageReadmeFile >
9
+ <Authors >ikpil</Authors >
10
+ <Description >Small and portable byte-aligned LZ77 compression for C#</Description >
11
+ <RepositoryType >git</RepositoryType >
12
+ <PackageProjectUrl >https://github.com/ikpil/DotFastLZ</PackageProjectUrl >
13
+ <RepositoryUrl >https://github.com/ikpil/DotFastLZ</RepositoryUrl >
14
+ <PackageTags >compression fastlz unity3d lz77</PackageTags >
9
15
</PropertyGroup >
10
16
11
17
<ItemGroup >
12
18
<None Include =" ../../README.md" Pack =" true" PackagePath =" \" />
13
19
</ItemGroup >
14
-
20
+
15
21
<ItemGroup >
16
- <ProjectReference Include =" ..\DotFastLZ.Packaging\DotFastLZ.Packaging.csproj" />
22
+ <ProjectReference Include =" ..\DotFastLZ.Packaging\DotFastLZ.Packaging.csproj" />
17
23
</ItemGroup >
18
24
19
25
</Project >
Original file line number Diff line number Diff line change 4
4
<TargetFramework >netstandard2.1</TargetFramework >
5
5
<PackageId >DotFastLZ.Packaging</PackageId >
6
6
<PackageReadmeFile >README.md</PackageReadmeFile >
7
+ <Authors >ikpil</Authors >
8
+ <Description >Small and portable byte-aligned LZ77 compression for C#</Description >
9
+ <RepositoryType >git</RepositoryType >
10
+ <PackageProjectUrl >https://github.com/ikpil/DotFastLZ</PackageProjectUrl >
11
+ <RepositoryUrl >https://github.com/ikpil/DotFastLZ</RepositoryUrl >
12
+ <PackageTags >compression fastlz unity3d lz77</PackageTags >
7
13
</PropertyGroup >
8
14
9
15
<ItemGroup >
10
16
<None Include =" ../../README.md" Pack =" true" PackagePath =" \" />
11
17
</ItemGroup >
12
18
13
19
<ItemGroup >
14
- <ProjectReference Include =" ..\DotFastLZ.Compression\DotFastLZ.Compression.csproj" />
20
+ <ProjectReference Include =" ..\DotFastLZ.Compression\DotFastLZ.Compression.csproj" />
15
21
</ItemGroup >
16
22
17
23
</Project >
You can’t perform that action at this time.
0 commit comments