.drone.yml 269 B

123456789101112
  1. kind: pipeline
  2. name: build
  3. steps:
  4. - name: submodules
  5. image: docker:git
  6. commands:
  7. - git submodule update --init --recursive
  8. - name: build
  9. image: microsoft/dotnet:2-sdk
  10. commands:
  11. - dotnet publish --configuration release --output /release Jellyfin.Server