-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
abfc287
commit 821bb18
Showing
11 changed files
with
80 additions
and
39 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,61 +1,78 @@ | ||
name: NETCore | ||
name: NET | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
types: [labeled] | ||
branches: | ||
- main | ||
|
||
|
||
env: | ||
BuildConfig: Release | ||
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true | ||
DOTNET_VERSION: '6.0.101' # https://dotnetcli.blob.core.windows.net/dotnet/release-metadata/6.0/releases.json | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Cancel previous builds in PR | ||
uses: styfle/cancel-workflow-action@0.9.1 | ||
uses: styfle/cancel-workflow-action@0.12.1 | ||
with: | ||
access_token: ${{ github.token }} | ||
|
||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Checkout code | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # avoid shallow clone so nbgv can do its work. | ||
|
||
- name: 'Install .NET SDK' | ||
uses: actions/setup-dotnet@v1 | ||
- name: Setup .NET SDK | ||
uses: actions/setup-dotnet@v4 | ||
with: | ||
dotnet-version: ${{ env.DOTNET_VERSION }} | ||
global-json-file: ./global.json | ||
|
||
- name: Restore dependencies | ||
run: dotnet restore | ||
|
||
- name: Versioning | ||
- name: Setup Git Versioning | ||
uses: dotnet/nbgv@master | ||
id: nbgv | ||
|
||
- name: Version Info | ||
- name: Show Version Info | ||
run: | | ||
echo 'SemVer2: ${{ steps.nbgv.outputs.SemVer2 }}' | ||
- name: Build with dotnet | ||
run: dotnet build | ||
--configuration ${{ env.BuildConfig }} | ||
--no-restore --configuration ${{ env.BuildConfig }} | ||
/p:Version=${{ steps.nbgv.outputs.AssemblyVersion }} | ||
|
||
- name: Test with dotnet | ||
run: dotnet test | ||
--no-build --configuration ${{ env.BuildConfig }} | ||
--logger "trx;LogFileName=test-results.trx" --results-directory ./artifacts/testResults | ||
continue-on-error: true | ||
|
||
- name: Test Report | ||
uses: dorny/test-reporter@v1 | ||
if: always() | ||
with: | ||
name: DotNET Tests | ||
path: "./artifacts/testResults/test-results.trx" | ||
reporter: dotnet-trx | ||
fail-on-error: true | ||
|
||
- name: Pack NuGet | ||
run: dotnet pack | ||
--configuration ${{ env.BuildConfig }} | ||
/p:ContinuousIntegrationBuild=true | ||
/p:Version=${{ steps.nbgv.outputs.NuGetPackageVersion }} | ||
|
||
- name: Push to NuGet | ||
run: dotnet nuget push **/*.nupkg | ||
--api-key ${{ secrets.NUGET_DEPLOY_KEY }} | ||
--source https://api.nuget.org/v3/index.json | ||
--no-symbols 1 | ||
--no-symbols | ||
--skip-duplicate |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<Project> | ||
<PropertyGroup> | ||
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally> | ||
</PropertyGroup> | ||
|
||
<ItemGroup Label=".NET Dependencies"> | ||
<PackageVersion Include="Refit" Version="7.2.22" /> | ||
<PackageVersion Include="Refit.HttpClientFactory" Version="7.2.22" /> | ||
<PackageVersion Include="Microsoft.Extensions.Options" Version="8.0.0" /> | ||
<PackageVersion Include="Microsoft.Extensions.Http" Version="8.0.0" /> | ||
</ItemGroup> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"sdk": { | ||
"version": "6.0.101" | ||
"version": "9.0.100" | ||
} | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters