2018-12-13 03:50:59 +00:00
|
|
|
kind: pipeline
|
2019-01-05 21:38:53 +00:00
|
|
|
name: build
|
2018-12-13 03:50:59 +00:00
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: submodules
|
|
|
|
image: docker:git
|
|
|
|
commands:
|
2018-12-13 23:40:01 +00:00
|
|
|
- git submodule update --init --recursive
|
2019-01-05 21:38:53 +00:00
|
|
|
- name: build
|
|
|
|
image: microsoft/dotnet:2-sdk
|
2018-12-13 03:50:59 +00:00
|
|
|
commands:
|
2019-01-13 15:32:54 +00:00
|
|
|
- dotnet publish --configuration release --output /release Jellyfin.Server
|