Initial commit

This commit is contained in:
Mike Nolan 2023-12-27 11:10:18 -06:00
parent c27c7851eb
commit 5f95f91e80
2 changed files with 16 additions and 1 deletions

1
.gitignore vendored
View File

@ -5,3 +5,4 @@ bin/
obj/ obj/
.vscode/ .vscode/
.vs/ .vs/
publish/

14
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,14 @@
stages:
- build
build:
image: mcr.microsoft.com/dotnet/sdk:7.0.400-jammy-amd64
stage: build
only:
- master
artifacts:
paths:
- publish
script:
- cp -r data publish/data
- dotnet publish -o publish --self-contained -p:PublishReadyToRun=true -p:PublishSingleFile=true -c Release