Skip to content

Commit

Permalink
[Misc] Add license and README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Linwenxuan authored Mar 26, 2024
2 parents f0ccf23 + ed6c7cf commit 7bad066
Show file tree
Hide file tree
Showing 4 changed files with 721 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/nightly-build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Nightly Build

on:
push:
branches: ["main"]

jobs:
Build-Package:
runs-on: ubuntu-latest
steps:

- uses: actions/checkout@v4
name: Checkout Files

- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
dotnet-version: '8.0.x'

- name: Dotnet Publish
run: |
cd KonataNT
dotnet build KonataNT.csproj
5 changes: 5 additions & 0 deletions KonataNT/KonataNT.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,9 @@
<ProjectReference Include="..\KonataNT.Proto.Generator\KonataNT.Proto.Generator.csproj" OutputItemType="Analyzer" ReferenceOutputAssembly="false"/>
</ItemGroup>

<ItemGroup>
<None Include="..\README.md"/>
<None Include="..\LICENSE"/>
</ItemGroup>

</Project>
Loading

0 comments on commit 7bad066

Please sign in to comment.