#!/usr/bin/env groovy | |
pipelineJob("task.publish.unstable") { | |
description("Update apt packages repository for unstable \"release\"") | |
definition { | |
cpsScm { | |
scm { | |
git { | |
remote { | |
url('https://coral.googlesource.com/gke-jenkins') | |
} | |
branches('*/master') | |
} | |
} | |
scriptPath("cicd/pipelines/tasks/task_publish_unstable.jenkins") | |
} | |
} | |
} |