Compare commits

..

No commits in common. "38b4e11d1b2fa765f363b37e64f4b2e6f3de7038" and "401340b9a49ab94c76d561a75eaa6e5c8d63a53c" have entirely different histories.

2 changed files with 53 additions and 5 deletions

44
.drone.yml Normal file
View file

@ -0,0 +1,44 @@
kind: pipeline
type: kubernetes
name: deploy
steps:
- name: docker
image: thegeeklab/drone-docker-buildx
privileged: true
settings:
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/debug
tags: latest
platforms:
- linux/arm64
- linux/amd64
when:
branch:
- main
- name: docker-build
image: thegeeklab/drone-docker-buildx
privileged: true
settings:
registry: git.ar21.de
username:
from_secret: REGISTRY_USER
password:
from_secret: REGISTRY_PASS
repo: git.ar21.de/aaron/debug
tags: latest
platforms:
- linux/arm64
- linux/amd64
dry_run: true
when:
branch:
exclude:
- main
when:
event:
include:
- push

View file

@ -14,8 +14,8 @@ steps:
- linux/arm64 - linux/arm64
- linux/amd64 - linux/amd64
when: when:
- branch: main branch:
event: push - main
- name: docker-build - name: docker-build
image: woodpeckerci/plugin-docker-buildx image: woodpeckerci/plugin-docker-buildx
privileged: true privileged: true
@ -32,6 +32,10 @@ steps:
- linux/amd64 - linux/amd64
dry_run: true dry_run: true
when: when:
- branch: branch:
exclude: main exclude:
event: push - main
when:
event:
include:
- push