Initial commit
This commit is contained in:
parent
c27c7851eb
commit
5f95f91e80
|
@ -4,4 +4,5 @@ data/emailbox.db
|
||||||
bin/
|
bin/
|
||||||
obj/
|
obj/
|
||||||
.vscode/
|
.vscode/
|
||||||
.vs/
|
.vs/
|
||||||
|
publish/
|
|
@ -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
|
Loading…
Reference in New Issue