-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #27 from skyhop/rc/3.1.0
Rc/3.1.0
- Loading branch information
Showing
84 changed files
with
46,298 additions
and
444 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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,40 @@ | ||
name: Ship packages | ||
|
||
on: | ||
push: | ||
branches: [ rc/** ] | ||
release: | ||
types: [ published ] | ||
|
||
|
||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: '5.0.x' # SDK Version to use. | ||
source-url: https://nuget.pkg.github.com/skyhop/index.json | ||
env: | ||
NUGET_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
- run: dotnet build --configuration Release | ||
|
||
- name: Install GitVersion | ||
uses: gittools/actions/gitversion/setup@v0.9.7 | ||
with: | ||
versionSpec: '5.x' | ||
|
||
- name: Build Versioning | ||
uses: gittools/actions/gitversion/execute@v0.9.7 | ||
- name: Create the package | ||
run: dotnet pack --configuration Release -p:PackageVersion=${GITVERSION_NUGETVERSIONV2} | ||
- name: Publish the package to GPR | ||
run: dotnet nuget push ./artifacts/pkg/Release/*.nupkg --api-key ${{secrets.NUGET_TOKEN}} --source "NuGet" |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,48 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project> | ||
|
||
<PropertyGroup> | ||
<TargetFramework>net5.0</TargetFramework> | ||
<BaseArtifactsPath>$(MSBuildThisFileDirectory)artifacts/</BaseArtifactsPath> | ||
<BaseArtifactsPathSuffix>$(SkyhopProjectCategory)/$(MSBuildProjectName)</BaseArtifactsPathSuffix> | ||
<BaseIntermediateOutputPath>$(BaseArtifactsPath)obj/$(BaseArtifactsPathSuffix)/</BaseIntermediateOutputPath> | ||
<BaseOutputPath>$(BaseArtifactsPath)bin/$(BaseArtifactsPathSuffix)/</BaseOutputPath> | ||
<PackageOutputPath>$(BaseArtifactsPath)pkg/$(Configuration)/</PackageOutputPath> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<AllowUnsafeBlocks>true</AllowUnsafeBlocks> | ||
<DebugType>portable</DebugType> | ||
<DebugType Condition="'$(codecov)' != ''">full</DebugType> | ||
<SignAssembly>false</SignAssembly> | ||
<SuppressNETCoreSdkPreviewMessage>true</SuppressNETCoreSdkPreviewMessage> | ||
<UseSharedCompilation>true</UseSharedCompilation> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<NeutralLanguage>en</NeutralLanguage> | ||
<OverwriteReadOnlyFiles>true</OverwriteReadOnlyFiles> | ||
<RepositoryType>git</RepositoryType> | ||
<RepositoryUrl>https://github.com/skyhop/FlightAnalysis/</RepositoryUrl> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<RestoreSources> | ||
https://api.nuget.org/v3/index.json; | ||
https://nuget.pkg.github.com/skyhop/index.json; | ||
</RestoreSources> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<LangVersion>8.0</LangVersion> | ||
<Nullable>disable</Nullable> | ||
<TreatWarningsAsErrors>true</TreatWarningsAsErrors> | ||
<Features>strict</Features> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup> | ||
<NoWarn>CA1303</NoWarn> | ||
<WarningsNotAsErrors>CA1303</WarningsNotAsErrors> | ||
</PropertyGroup> | ||
|
||
</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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project> | ||
|
||
<!-- Settings that append the existing setting value --> | ||
<PropertyGroup> | ||
<DefineConstants>$(DefineConstants);$(OS)</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<!-- For example; <PackageReference Update="AutoMapper" Version="10.1.1" /> --> | ||
</ItemGroup> | ||
|
||
</Project> |
Oops, something went wrong.