diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index 157c8b3..0000000 --- a/.drone.yml +++ /dev/null @@ -1,87 +0,0 @@ ---- -kind: pipeline -name: build-container - -platform: - os: linux - arch: amd64 - -steps: - - name: dryrun - image: thegeeklab/drone-docker-buildx:23 - settings: - dockerfile: Dockerfile.multiarch - dry_run: true - platforms: - - linux/amd64 - - linux/arm64 - - linux/arm/v7 - - linux/arm/v6 - provenance: false - repo: thegeeklab/${DRONE_REPO_NAME} - when: - ref: - - refs/pull/** - - - name: publish-dockerhub - image: thegeeklab/drone-docker-buildx:23 - settings: - auto_tag: true - dockerfile: Dockerfile.multiarch - password: - from_secret: docker_password - platforms: - - linux/amd64 - - linux/arm64 - - linux/arm/v7 - - linux/arm/v6 - provenance: false - repo: thegeeklab/${DRONE_REPO_NAME} - username: - from_secret: docker_username - when: - ref: - - refs/heads/main - - refs/tags/** - depends_on: - - dryrun - - - name: publish-quay - pull: always - image: docker.io/xoxys/drone-docker-buildx:debug - settings: - auto_tag: true - dockerfile: - from_secret: debug_string - log_level: debug - platforms: - - linux/amd64 - - linux/arm64 - - linux/arm/v7 - - linux/arm/v6 - provenance: false - registries: - - password: - from_secret: debug_string - registry: quay.io - username: - from_secret: debug_string - repo: quay.io/thegeeklab/${DRONE_REPO_NAME} - when: - ref: - - refs/heads/main - - refs/tags/** - depends_on: - - dryrun - -trigger: - ref: - - refs/heads/main - - refs/tags/** - - refs/pull/** - ---- -kind: signature -hmac: 51143668f10f8403862a46301a3a256c39795f98b0fc10e15aa719325a0fa28f - -... diff --git a/README.md b/README.md index ab9e4d1..d9fd934 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # drone-admin -Drone Admin Tools +DISCONTINUED: Drone Admin Tools [![Build Status](https://img.shields.io/drone/build/thegeeklab/drone-admin?logo=drone&server=https%3A%2F%2Fdrone.thegeeklab.de)](https://drone.thegeeklab.de/thegeeklab/drone-admin) [![Docker Hub](https://img.shields.io/badge/dockerhub-latest-blue.svg?logo=docker&logoColor=white)](https://hub.docker.com/r/thegeeklab/drone-admin) @@ -10,6 +10,8 @@ Drone Admin Tools [![Source: GitHub](https://img.shields.io/badge/source-github-blue.svg?logo=github&logoColor=white)](https://github.com/thegeeklab/drone-admin) [![License: Apache-2.0](https://img.shields.io/github/license/thegeeklab/drone-admin)](https://github.com/thegeeklab/drone-admin/blob/main/LICENSE) +> **DISCONTINUED:** As I don't use Drone CI anymore, this project is unmaintained. If you are interested in a free and open source CI system check out [Woodpecker CI](https://woodpecker-ci.org/). + Admin Tools for [Drone](https://github.com/drone/drone). You can find the full documentation at [https://drone-plugin-index.geekdocs.de](https://drone-plugin-index.geekdocs.de/tools/drone-admin). ## Contributors diff --git a/renovate.json b/renovate.json deleted file mode 100644 index 45d1c03..0000000 --- a/renovate.json +++ /dev/null @@ -1,4 +0,0 @@ -{ - "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "extends": ["github>thegeeklab/renovate-presets:golang"] -}