Feature/docker setup (#294)

* Github Action for Docker Integration on merge into develop

Co-authored-by: Chris Plaatjes <chris.p@boxbrite.com>
This commit is contained in:
Kizaing 2021-06-08 14:20:36 -04:00 committed by GitHub
parent 8d8e7ce93b
commit 560b0c9cb5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 117 additions and 7 deletions

View file

@ -15,7 +15,7 @@ ProgressEnd()
Build()
{
local RID="$1"
local RID="$1"
ProgressStart 'Build for $RID'
@ -24,8 +24,8 @@ Build()
dotnet clean $slnFile -c Debug
dotnet clean $slnFile -c Release
dotnet msbuild -restore $slnFile -p:Configuration=Release -p:Platform="Any CPU" -p:RuntimeIdentifiers=$RID
dotnet msbuild -restore $slnFile -p:Configuration=Release -p:Platform="Any CPU" -p:RuntimeIdentifiers=$RID
ProgressEnd 'Build for $RID'
}