From 5be891c6debbc7ca2d956b91a26eea23eadf756a Mon Sep 17 00:00:00 2001 From: Liam Date: Fri, 13 Jan 2023 14:41:06 +0000 Subject: [PATCH] remove drone --- .drone.yml | 58 ------------------------------------------------------ 1 file changed, 58 deletions(-) delete mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml deleted file mode 100644 index b55f6f7..0000000 --- a/.drone.yml +++ /dev/null @@ -1,58 +0,0 @@ -kind: pipeline -type: docker -name: default - -steps: - - name: restore-cache - image: drillster/drone-volume-cache - volumes: - - name: cache - path: /cache - settings: - restore: true - mount: - - ./node_modules - - - name: install depends - image: node:18 - commands: - - npm install - - - name: rebuild-cache - image: drillster/drone-volume-cache - volumes: - - name: cache - path: /cache - settings: - rebuild: true - mount: - - ./node_modules - - # Other branches - - name: test - image: node:18 - when: - branch: - exclude: - - main - commands: - - npm run lint - - # Main branches - - name: docker - image: plugins/docker - when: - branch: - - main - settings: - username: - from_secret: dockerhub_username - password: - from_secret: dockerhub_password - repo: fascinated/beatsaber-overlay - tags: latest - -volumes: - - name: cache - host: - path: /tmp/cache