You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
33 lines
562 B
33 lines
562 B
kind: pipeline
|
|
name: build:debian
|
|
|
|
steps:
|
|
- name: submodules
|
|
image: docker:git
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
- name: build:debian
|
|
image: plugins/docker
|
|
group: build
|
|
settings:
|
|
repo: jellyfin/jellyfin
|
|
dry_run: true
|
|
dockerfile: Dockerfile.debian_package
|
|
|
|
|
|
---
|
|
kind: pipeline
|
|
name: build:docker
|
|
|
|
steps:
|
|
- name: submodules
|
|
image: docker:git
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
- name: build:docker
|
|
image: plugins/docker
|
|
group: build
|
|
settings:
|
|
repo: jellyfin/jellyfin
|
|
dry_run: true
|