From 60f242c3cf787523c33494abf736a1649d7d2998 Mon Sep 17 00:00:00 2001
From: samuel-p <codes@samuel-philipp.de>
Date: Wed, 27 Oct 2021 23:00:43 +0200
Subject: [PATCH] changed .drone.yml to .woodpecker.yml

---
 .drone.yml      | 116 ------------------------------------------------
 .woodpecker.yml |  10 +++++
 2 files changed, 10 insertions(+), 116 deletions(-)
 delete mode 100644 .drone.yml
 create mode 100644 .woodpecker.yml

diff --git a/.drone.yml b/.drone.yml
deleted file mode 100644
index 226d33b..0000000
--- a/.drone.yml
+++ /dev/null
@@ -1,116 +0,0 @@
-kind: pipeline
-type: docker
-name: linux-amd64
-
-platform:
-  os: linux
-  arch: amd64
-
-steps:
-  - name: docker
-    image: plugins/docker
-    settings:
-      auto_tag: true
-      auto_tag_suffix: linux-amd64
-      repo: samuelph/connectivity-check
-      username:
-        from_secret: USERNAME
-      password:
-        from_secret: PASSWORD
-
-trigger:
-  branch:
-    - master
-  event:
-    - push
-
----
-kind: pipeline
-type: docker
-name: linux-arm64
-
-platform:
-  os: linux
-  arch: arm64
-
-steps:
-  - name: docker
-    image: plugins/docker
-    settings:
-      auto_tag: true
-      auto_tag_suffix: linux-arm64
-      repo: samuelph/connectivity-check
-      username:
-        from_secret: USERNAME
-      password:
-        from_secret: PASSWORD
-
-trigger:
-  branch:
-    - master
-  event:
-    - push
-
----
-kind: pipeline
-type: docker
-name: linux-arm
-
-platform:
-  os: linux
-  arch: arm
-
-steps:
-  - name: docker
-    image: plugins/docker
-    settings:
-      auto_tag: true
-      auto_tag_suffix: linux-arm
-      repo: samuelph/connectivity-check
-      username:
-        from_secret: USERNAME
-      password:
-        from_secret: PASSWORD
-
-trigger:
-  branch:
-    - master
-  event:
-    - push
-
----
-kind: pipeline
-type: docker
-name: manifest
-
-platform:
-  os: linux
-  arch: arm64
-
-steps:
-  - name: publish
-    image: plugins/manifest
-    settings:
-      auto_tag: true
-      ignore_missing: true
-      target: samuelph/connectivity-check
-      template: samuelph/connectivity-check:OS-ARCH
-      platforms:
-        - linux/amd64
-        - linux/arm64
-        - linux/arm
-      username:
-        from_secret: USERNAME
-      password:
-        from_secret: PASSWORD
-
-depends_on:
-  - linux-amd64
-  - linux-arm64
-  - linux-arm
-
-trigger:
-  branch:
-    - master
-  event:
-    - push
diff --git a/.woodpecker.yml b/.woodpecker.yml
new file mode 100644
index 0000000..ef3f4ef
--- /dev/null
+++ b/.woodpecker.yml
@@ -0,0 +1,10 @@
+pipeline:
+  docker:
+    image: plugins/docker
+    repo: samuelph/connectivity-check
+    tags: latest
+    when:
+      branch:
+        - main
+      event:
+        - push