37 lines
729 B
YAML
37 lines
729 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: default
|
|
|
|
steps:
|
|
- name: Update fedora repo
|
|
image: debian:stable-slim
|
|
commands:
|
|
- '/drone/src/fedora.sh'
|
|
volumes:
|
|
- name: fedora-repo
|
|
path: /repo
|
|
- name: Update debian repo
|
|
image: debian:stable-slim
|
|
commands:
|
|
- '/drone/src/debian-bookworm-x64.sh'
|
|
volumes:
|
|
- name: bookworm-repo
|
|
path: /repo
|
|
- name: Update archlinux repo
|
|
image: zocker160/aur-builder
|
|
commands:
|
|
- '/drone/src/archlinux.sh'
|
|
volumes:
|
|
- name: arch-repo
|
|
path: /repo
|
|
|
|
volumes:
|
|
- name: fedora-repo
|
|
host:
|
|
path: /mnt/user/files/repos/fedora/x86_64
|
|
- name: bookworm-repo
|
|
host:
|
|
path: /mnt/user/files/repos/debian
|
|
- name: arch-repo
|
|
host:
|
|
path: /mnt/user/files/repos/archlinux/x86_64
|