aboutsummaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorMichael Grote2023-11-07 15:36:33 +0100
committerMichael Grote2023-11-07 15:36:33 +0100
commit15f03a20ceddaaa7cfb8c34fe030a9c4938ba389 (patch)
tree6d86c8253d584080cb246d21bf9403c322d1347c /.drone.yml
parent11cad3a3ab36ea07a1d8e2334599f89b12bc8e62 (diff)
drone -> woodpecker
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml64
1 files changed, 0 insertions, 64 deletions
diff --git a/.drone.yml b/.drone.yml
deleted file mode 100644
index c4e93bd..0000000
--- a/.drone.yml
+++ /dev/null
@@ -1,64 +0,0 @@
----
-kind: pipeline
-type: docker
-name: linting
-
-steps:
- - name: gitleaks
- image: plugins/gitleaks
- settings:
- path: .
- when:
- event:
- exclude:
- - tag
-
- - name: hadolint
- image: hadolint/hadolint:latest-debian
- commands:
- - hadolint Dockerfile
-
----
-kind: pipeline
-type: docker
-name: selfhosted
-
-steps:
- - name: docker_build_and_push_selfhosted
- image: thegeeklab/drone-docker-buildx:23
- privileged: true
- settings:
- dockerfile: Dockerfile
- repo: registry.mgrote.net/mdns-repeater-mikrotik
- registry: registry.mgrote.net
- tags:
- - ${DRONE_COMMIT_SHA:0:8}
- - ${DRONE_COMMIT_BRANCH}
- - latest
- platforms:
- - linux/arm64
- - linux/amd64
- when:
- event:
- exclude:
- - pull_request
- - tag
-
- - name: docker_build_and_push_selfhosted_tag
- image: thegeeklab/drone-docker-buildx:23
- privileged: true
- settings:
- dockerfile: Dockerfile
- repo: registry.mgrote.net/mdns-repeater-mikrotik
- registry: registry.mgrote.net
- tags:
- - ${DRONE_TAG}
- platforms:
- - linux/arm64
- - linux/amd64
- when:
- event:
- - tag
-
-depends_on: # bezieht sich auf linting pipeline
- - linting