Skip to content

Commit

Permalink
Create dotnetcore.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvaluyskiy authored Jan 7, 2020
1 parent 90620d9 commit 8c344b8
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/dotnetcore.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: .NET Core

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.0.100
- name: dotnet tool restore
run: dotnet tool restore
- name: set GitVersion
run: dotnet dotnet-gitversion /output buildserver /nofetch
- name: dotnet pack
run: dotnet pack --output $(Build.ArtifactStagingDirectory) --include-symbols /p:Configuration=$(BuildConfiguration) --verbosity Normal /p:Version=$(GitVersion.NuGetVersion)

0 comments on commit 8c344b8

Please sign in to comment.