Initial commit
This commit is contained in:
commit
ee7756f51d
3 changed files with 42 additions and 0 deletions
37
.woodpecker.yaml
Normal file
37
.woodpecker.yaml
Normal file
|
@ -0,0 +1,37 @@
|
|||
steps:
|
||||
- name: docker
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
privileged: true
|
||||
settings:
|
||||
registry: git.ar21.de
|
||||
username:
|
||||
from_secret: REGISTRY_USER
|
||||
password:
|
||||
from_secret: REGISTRY_PASS
|
||||
repo: git.ar21.de/aaron/debian-ci
|
||||
tags: latest
|
||||
platforms:
|
||||
- linux/arm64
|
||||
- linux/amd64
|
||||
when:
|
||||
- branch: main
|
||||
event: push
|
||||
- name: docker-build
|
||||
image: woodpeckerci/plugin-docker-buildx
|
||||
privileged: true
|
||||
settings:
|
||||
registry: git.ar21.de
|
||||
username:
|
||||
from_secret: REGISTRY_USER
|
||||
password:
|
||||
from_secret: REGISTRY_PASS
|
||||
repo: git.ar21.de/aaron/debian-ci
|
||||
tags: latest
|
||||
platforms:
|
||||
- linux/arm64
|
||||
- linux/amd64
|
||||
dry_run: true
|
||||
when:
|
||||
- branch:
|
||||
exclude: main
|
||||
event: push
|
2
Dockerfile
Normal file
2
Dockerfile
Normal file
|
@ -0,0 +1,2 @@
|
|||
FROM debian:12.7
|
||||
RUN apt update -qq && apt install -y jq yq git curl wget && rm -rf /var/lib/apt/lists
|
3
README.md
Normal file
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# debian-ci
|
||||
[![status-badge](https://woodpecker.ar21.de/api/badges/11/status.svg)](https://woodpecker.ar21.de/repos/11)
|
||||
versatile container for debian CIs
|
Loading…
Reference in a new issue