Compare commits

..

29 commits

Author SHA1 Message Date
1750b25d43
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 20:28:48 +02:00
1e5b433b3e
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 20:26:09 +02:00
0214d3cea4
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 20:20:07 +02:00
141234f9fe
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 20:17:51 +02:00
71f008330c
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 20:16:05 +02:00
e71ed22722
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 20:14:15 +02:00
402a268a4a
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 20:13:18 +02:00
bd58210fa8
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 20:12:16 +02:00
e40d4ee9de
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 20:10:29 +02:00
e6cfbf9d61
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 20:09:26 +02:00
4f01fe18fb
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 20:08:04 +02:00
62c04cafda
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 20:06:45 +02:00
b8abef9994
fix 2025-06-02 20:04:52 +02:00
1b755639ed
fix 2025-06-02 20:03:10 +02:00
b3df97dd89
fix 2025-06-02 20:02:09 +02:00
344872fea9
fix 2025-06-02 20:01:14 +02:00
5393c5df0e
fix 2025-06-02 19:59:49 +02:00
b15dd6bd0d
fix 2025-06-02 19:57:59 +02:00
40eafe2479
fix 2025-06-02 19:57:36 +02:00
231552e478
fix 2025-06-02 19:56:58 +02:00
611a1fa9bd
fix
Some checks failed
ci/woodpecker/push/alertmanager-ntfy Pipeline failed
2025-06-02 19:56:01 +02:00
6acedcc102
Update alertmanager-ntfy 2025-06-02 19:55:13 +02:00
5f6a49c4fd
Update alertmanager-ntfy 2025-06-02 19:54:08 +02:00
7b0f9d40e8
Update alertmanager-ntfy 2025-06-02 19:52:47 +02:00
9b669917f5
Update alertmanager-ntfy 2025-06-02 19:49:59 +02:00
c99edca2ce
Update alertmanager-ntfy 2025-06-02 19:46:17 +02:00
004f445ba5
Update alertmanager-ntfy 2025-06-02 19:39:24 +02:00
876e7f39cb
i try 2025-06-02 19:38:05 +02:00
eb9685a7c2
alertmanager-ntfy 2025-06-02 19:37:33 +02:00
5 changed files with 55 additions and 9 deletions

View file

@ -0,0 +1,36 @@
when:
- event: push
path:
- 'alertmanager-ntfy/**'
- '.woodpecker/alertmanager-ntfy.yaml'
- event: cron
workspace:
path: src
matrix:
VERSION:
- 76d5f772f70d6915c89da00414c20009b03cc361
IMAGE_NAME:
- git.hamburg.ccc.de/ccchh/oci-images/alertmanager-ntfy
steps:
- name: setup
image: alpine
commands:
- ls
- apk -u add git
- mkdir /woodpecker/images
- git clone https://github.com/alexbakker/alertmanager-ntfy.git alertmanager-ntfy/src
- cd alertmanager-ntfy/src && git checkout ${VERSION} && cd ..
- name: build-image
image: gcr.io/kaniko-project/executor
entrypoint:
- /kaniko/executor
- --context=dir:///woodpecker/src/alertmanager-ntfy
- --dockerfile=./Containerfile
- --destination=git.hamburg.ccc.de/ccchh/oci-images/alertmanager-ntfy:${VERSION}
- --no-push
- --tar-path=/woodpecker/images/alertmanager-ntfy.tar

View file

@ -19,6 +19,7 @@ workspace:
# Also because global environment variables aren't a thing.
matrix:
KEYCLOAK_VERSION:
- 26.0
- 26.1
- 26.2
IMAGE_NAME:

View file

@ -19,6 +19,7 @@ workspace:
# Also because global environment variables aren't a thing.
matrix:
NEXTCLOUD_VERSION:
- 29
- 30
- 31
IMAGE_NAME:

View file

@ -0,0 +1,11 @@
FROM docker.io/library/golang:1 as builder
ARG CGO_ENABLED=0
WORKDIR /usr/src/app
COPY src/go.mod src/go.sum ./
RUN go mod download
COPY src/. .
RUN go build -v -o /usr/local/bin/app ./...
CMD ["app"]

View file

@ -64,9 +64,8 @@ steps:
- name: publish-image
image: docker.io/library/alpine
environment:
GIT_API_TOKEN:
from_secret: GIT_API_TOKEN
secrets:
- GIT_API_TOKEN
commands:
- apk -u add crane
- crane auth login git.hamburg.ccc.de -u woodpecker -p $GIT_API_TOKEN
@ -76,9 +75,8 @@ steps:
image: docker.io/library/alpine
when:
- branch: main
environment:
GIT_API_TOKEN:
from_secret: GIT_API_TOKEN
secrets:
- GIT_API_TOKEN
commands:
- apk -u add crane
- crane auth login git.hamburg.ccc.de -u woodpecker -p $GIT_API_TOKEN
@ -89,9 +87,8 @@ steps:
when:
- branch: main
evaluate: 'PENPOT_VERSION == "2.1.2"'
environment:
GIT_API_TOKEN:
from_secret: GIT_API_TOKEN
secrets:
- GIT_API_TOKEN
commands:
- apk -u add crane
- crane auth login git.hamburg.ccc.de -u woodpecker -p $GIT_API_TOKEN