From 0c6968b3f8d554509881525ddd7a86b52e24991a Mon Sep 17 00:00:00 2001 From: Massaki Archambault Date: Sun, 5 Sep 2021 12:39:46 -0400 Subject: [PATCH] add amd64 pipeline --- .drone.yml | 16 ++++++++++++++++ Makefile | 3 +++ 2 files changed, 19 insertions(+) create mode 100644 Makefile diff --git a/.drone.yml b/.drone.yml index 2cfd37b..aa7af4d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,3 +1,19 @@ + +kind: pipeline +type: docker +name: amd64 + +steps: +- name: docker + image: plugins/docker + settings: + repo: badjware/nextcloud-tweak + auto_tag: true + username: + from_secret: docker_username + password: + from_secret: docker_password +--- kind: pipeline type: kubernetes name: arm64 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..7789c2d --- /dev/null +++ b/Makefile @@ -0,0 +1,3 @@ +.PHONY: amd64 +amd64: + drone exec --pipeline amd64