From 9ed85c5f876553889bf31a3a7d8a6479bd3a4cf2 Mon Sep 17 00:00:00 2001 From: diocloid Date: Sun, 19 Apr 2020 10:40:16 +0200 Subject: [PATCH] first commit --- .drone.yml | 39 +++++++++++++++++++++++++++++++++++++++ README.md | 2 ++ 2 files changed, 41 insertions(+) create mode 100644 .drone.yml create mode 100644 README.md diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..1ee0686 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,39 @@ +kind: pipeline +type: docker +name: docker + +platform: + os: linux + arch: arm64 + +steps: +- name: greeting + image: alpine:latest + commands: + - echo hello + - echo world + +--- + +kind: pipeline +type: ssh +name: ssh + +platform: + os: linux + arch: arm64 + +server: + host: + from_secret: host + user: + from_secret: user + password: + from_secret: password + +steps: +- name: greeting + commands: + - whoami + + diff --git a/README.md b/README.md new file mode 100644 index 0000000..ae52d3f --- /dev/null +++ b/README.md @@ -0,0 +1,2 @@ +This is a repository for spoons and knifes. +All there's missing is a fork. \ No newline at end of file