We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0f0c34d commit 9fd8c70Copy full SHA for 9fd8c70
.github/workflows/ci.yml
@@ -0,0 +1,18 @@
1
+name: DotNet GitStats CI
2
+
3
+on: [push]
4
5
+jobs:
6
+ build:
7
8
+ runs-on: ubuntu-latest
9
10
+ steps:
11
+ - uses: actions/checkout@v2
12
+ - name: Setup .NET Core
13
+ uses: actions/setup-dotnet@v1
14
+ with:
15
+ dotnet-version: 3.1.102
16
+ - name: Build with dotnet
17
+ run: dotnet publish -c Release -o publish/win-x64 -r win-x64 /p:PublishSingleFile=true /p:IncludeSymbolsInSingleFile=true /p:PublishTrimmed=true
18
0 commit comments