Compare commits

..

4 commits

Author SHA1 Message Date
b722397a8b
do not build eol keycloak and nextcloud
Some checks failed
ci/woodpecker/push/keycloak/1 Pipeline was successful
ci/woodpecker/push/keycloak/2 Pipeline was successful
ci/woodpecker/push/nextcloud/1 Pipeline was successful
ci/woodpecker/push/nextcloud/2 Pipeline was successful
ci/woodpecker/cron/keycloak/2 Pipeline was successful
ci/woodpecker/cron/keycloak/1 Pipeline was successful
ci/woodpecker/cron/nextcloud/1 Pipeline was successful
ci/woodpecker/cron/nextcloud/2 Pipeline was successful
ci/woodpecker/cron/penpot/2 Pipeline failed
ci/woodpecker/cron/penpot/1 Pipeline failed
ci/woodpecker/cron/penpot/3 Pipeline failed
2025-06-29 20:34:53 +02:00
1f3e972fbd
fix secrets
Some checks failed
ci/woodpecker/push/penpot/3 Pipeline failed
ci/woodpecker/push/penpot/1 Pipeline failed
ci/woodpecker/push/penpot/2 Pipeline failed
2025-06-29 20:33:09 +02:00
1e323bfa92
remove never used image build 2025-06-24 22:51:06 +02:00
f4bfd374f9
alertmanager-ntfy 2025-06-02 19:24:35 +02:00
5 changed files with 9 additions and 55 deletions

View file

@ -1,36 +0,0 @@
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,7 +19,6 @@ workspace:
# Also because global environment variables aren't a thing.
matrix:
KEYCLOAK_VERSION:
- 26.0
- 26.1
- 26.2
IMAGE_NAME:

View file

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

View file

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

View file

@ -1,11 +0,0 @@
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"]