From 4fa6863b0d1084f215f95065c2d513c07655f2ea Mon Sep 17 00:00:00 2001 From: Chris Plaatjes Date: Mon, 13 Feb 2023 17:52:25 -0500 Subject: [PATCH] Added drone CI support --- .drone.yml | 22 ++++++++++++++++++++++ README.md | 2 ++ 2 files changed, 24 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..7c05fdc --- /dev/null +++ b/.drone.yml @@ -0,0 +1,22 @@ +--- +kind: pipeline +name: build-app + +steps: +- name: build-dotnet + image: mcr.microsoft.com/dotnet/sdk:6.0 + commands: + - dotnet build + +steps: +- name: build-docker + image: docker:dind + volumes: + - name: dockersock + path: /var/run/docker.sock + +trigger: + branch: + - main + event: + - push \ No newline at end of file diff --git a/README.md b/README.md index 101dc87..429619b 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,5 @@ +[![Build Status](https://ci.kizaing.ca/api/badges/kizaing/TeleTok/status.svg)](https://ci.kizaing.ca/kizaing/TeleTok) + # TeleTok Telegram Bot This bot is in early development, but the end goal is to have this bot automatically convert all tiktok links in a chat into a videofile that can be re-uploaded to the telegram chat \ No newline at end of file