From c0ccc267c8c34761a30362b89912933f9528f2e1 Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 20 May 2022 19:37:42 +0700 Subject: [PATCH] remove drone --- .drone.yml | 68 ------------------------------------------------------ 1 file changed, 68 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index ab030ce..0000000 --- a/.drone.yml +++ /dev/null @@ -1,68 +0,0 @@ -kind: pipeline -type: docker -name: amd64 - -platform: - os: linux - arch: amd64 - -# test comment -steps: -- name: docker - image: plugins/docker - settings: - repo: bbilly1/tubearchivist-test - tags: - - unstable - username: - from_secret: docker_username - password: - from_secret: docker_token - build_args: - - TARGETPLATFORM=linux/amd64 - ---- -kind: pipeline -type: docker -name: arm64 - -platform: - os: linux - arch: arm64 - -steps: -- name: docker - image: plugins/docker - settings: - repo: bbilly1/tubearchivist-test - tags: - - unstable - username: - from_secret: docker_username - password: - from_secret: docker_token - build_args: - - TARGETPLATFORM=linux/arm64 - ---- -kind: pipeline -type: docker -name: manifest - -steps: -- name: manifest - image: plugins/manifest - settings: - target: bbilly1/tubearchivist-test - template: bbilly1/tubearchivist-test:unstable-OS-ARCH - username: - from_secret: docker_username - password: - from_secret: docker_token - platforms: - - linux/amd64 - - linux/arm64 - -depends_on: -- amd64 -- arm64