29 lines
848 B
YAML
29 lines
848 B
YAML
when:
|
|
- path:
|
|
include: ['alertmanager-ntfy/**', '.woodpecker/alertmanager-ntfy.yaml']
|
|
- event: [cron]
|
|
|
|
matrix:
|
|
ALERTMANAGER_NTFY_VERSION:
|
|
- 76d5f772f70d6915c89da00414c20009b03cc361
|
|
IMAGE_NAME:
|
|
- git.hamburg.ccc.de/ccchh/oci-images/alertmanager-ntfy
|
|
|
|
steps:
|
|
- name: setup
|
|
image: alpine
|
|
commands:
|
|
- apk -u add git
|
|
- mkdir /woodpecker/images
|
|
- git clone --revision=${ALERTMANAGER_NTFY_VERSION} https://github.com/alexbakker/alertmanager-ntfy.git
|
|
- ls
|
|
|
|
- name: build-image
|
|
image: gcr.io/kaniko-project/executor
|
|
entrypoint:
|
|
- /kaniko/executor
|
|
- --context=dir:///woodpecker/src/alertmanager-ntfy
|
|
- --dockerfile=./Containerfile
|
|
- --destination=${IMAGE_NAME}:${ALERTMANAGER-NTFY_VERSION}
|
|
- --no-push
|
|
- --tar-path=/woodpecker/images/alertmanager-ntfy.tar
|