.drone.yml 584 B

123456789101112131415161718192021222324252627282930
  1. ---
  2. kind: pipeline
  3. name: build-debug
  4. steps:
  5. - name: submodules
  6. image: docker:git
  7. commands:
  8. - git submodule update --init --recursive
  9. - name: build
  10. image: microsoft/dotnet:2-sdk
  11. commands:
  12. - dotnet publish "Jellyfin.Server" --configuration Debug --output "../ci/ci-debug"
  13. ---
  14. kind: pipeline
  15. name: build-release
  16. steps:
  17. - name: submodules
  18. image: docker:git
  19. commands:
  20. - git submodule update --init --recursive
  21. - name: build
  22. image: microsoft/dotnet:2-sdk
  23. commands:
  24. - dotnet publish "Jellyfin.Server" --configuration Release --output "../ci/ci-release"