Skip to content

Commit

Permalink
Setup GH-Action to publish on release.
Browse files Browse the repository at this point in the history
  • Loading branch information
bijij committed Jan 22, 2021
1 parent b1a69b9 commit cdb2c83
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,10 @@ jobs:
asset_path: build/bottom
asset_name: bottom_linux-x64
asset_content_type: application/octet-stream
- name: Publish NuGet Package
uses: brandedoutcast/[email protected]
with:
PROJECT_FILE_PATH: ./src/Bottom_NET/Bottom_NET.csproj
TAG_COMMIT: false
NUGET_KEY: ${{ secrets.NUGET_API_KEY }}

Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 18 additions & 0 deletions src/Bottom_NET/Bottom_NET.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,24 @@
<TargetFramework>netcoreapp3.1</TargetFramework>
<AssemblyName>Bottom_NET</AssemblyName>
<RootNamespace>Bottom_NET</RootNamespace>
<Version>1.1.1</Version>
<PackageId>Bottom.NET</PackageId>
<Authors>Bottom Software Foundation</Authors>
<Product>Bottom.NET</Product>
<Description>Bottom encoding utility functions for .NET</Description>
<Copyright>2021</Copyright>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
<AssemblyVersion>1.1.1.0</AssemblyVersion>
<PackageProjectUrl>https://github.com/bottom-software-foundation/bottom-dotnet/</PackageProjectUrl>
<PackageIcon>logo.png</PackageIcon>
<RepositoryUrl>https://github.com/bottom-software-foundation/bottom-dotnet/</RepositoryUrl>
</PropertyGroup>

<ItemGroup>
<None Include="..\..\logo.png">
<Pack>True</Pack>
<PackagePath></PackagePath>
</None>
</ItemGroup>

</Project>

0 comments on commit cdb2c83

Please sign in to comment.