File tree Expand file tree Collapse file tree 3 files changed +34
-47
lines changed Expand file tree Collapse file tree 3 files changed +34
-47
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1+ name : Deploy
2+ on :
3+ release :
4+ types :
5+ - published
6+ jobs :
7+ build :
8+ name : Build
9+ if : ${{ !github.event.release.prerelease && github.event.release.target_commitish == 'master' }}
10+ runs-on : ubuntu-latest
11+ steps :
12+ - uses : actions/checkout@v2
13+ - uses : actions/setup-dotnet@v1
14+ with :
15+ dotnet-version : ' 2.2.x'
16+ - run : dotnet build
Original file line number Diff line number Diff line change 1+ name : Integrate
2+ on :
3+ push :
4+ branches :
5+ - master
6+ pull_request :
7+ branches :
8+ - master
9+ jobs :
10+ build :
11+ name : Build
12+ runs-on : ubuntu-latest
13+ steps :
14+ - uses : actions/checkout@v2
15+ - uses : actions/setup-dotnet@v1
16+ with :
17+ dotnet-version : ' 2.2.x'
18+ - run : dotnet build
You can’t perform that action at this time.
0 commit comments