package_sources/.drone.yml

41 lines
924 B
YAML
Raw Normal View History

2023-03-27 15:25:34 +02:00
---
kind: pipeline
type: docker
name: Build ArchLinux packages!
trigger:
event:
include:
- push
steps:
2023-08-21 15:57:46 +02:00
- name: Abort if CI Commit
image: registry.tobiasmanske.de/git:latest
commands:
- "[[ \"$${GIT_COMMITTER_NAME}\" = \"Drone CI\" ]] && exit 78"
- exit 0
- name: Update submodules
image: registry.tobiasmanske.de/git:latest
commands:
- git config user.name "Drone CI"
- git config user.email "noreply@tobiasmanske.de"
- git submodule update --remote --merge
- git add -A
- git commit -m "Update submodules from CI"
- git push
2023-03-27 15:25:34 +02:00
- name: Start buildpipeline
image: plugins/downstream
settings:
server: https://drone.tobiasmanske.de
2023-03-28 06:42:56 +02:00
wait: false
2023-03-27 15:25:34 +02:00
token:
from_secret: drone_token
repositories:
- archlinux-repo/builder
params:
- "NO_GIT_REBUILD=true"
2023-08-21 15:57:46 +02:00
image_pull_secrets:
- registry