From a177391ceb2efa1a69fba79b0b528ed9fd5bca6d Mon Sep 17 00:00:00 2001 From: InsanusMokrassar Date: Thu, 12 Nov 2020 13:01:58 +0600 Subject: [PATCH] add distributions to github release --- README.md | 28 ++++------------------------ github_release.gradle | 2 ++ 2 files changed, 6 insertions(+), 24 deletions(-) diff --git a/README.md b/README.md index 5c95f86..2b1037b 100644 --- a/README.md +++ b/README.md @@ -1,28 +1,8 @@ -# Telegram Bot Template +# PlaguBot -That is template for telegram bots based on next stack of technologies: +That is a set of libraries for plagubots. Look at the +[PlaguBot template](https://github.com/InsanusMokrassar/PlaguBotPluginTemplate) to find how to create your bot. -* [Kotlin Coroutines](https://github.com/Kotlin/kotlinx.coroutines) -* [Kotlin Serialization](https://github.com/Kotlin/kotlinx.serialization) -* [Telegram Bot API Library](https://github.com/InsanusMokrassar/TelegramBotAPI) (by default everything is included like -it was described [here](https://github.com/InsanusMokrassar/TelegramBotAPI#ok-where-should-i-start)) +## How to use? -## Default -Since you have used this repo as a template you can simply run command `./gradlew run --args="BOT_TOKEN"` (of course, -replace here `BOT_TOKEN` with your telegram bot token like `1234567890:ABCDEFGHIJKLM_OPqrstuvwxyz012345678`). As an -output you will get your bot information like: - -```bash -ExtendedBot(id=ChatId(chatId=1234567890), username=Username(username=@username_of_your_bot), firstName=Name of bot, lastName=, canJoinGroups=(some boolean), canReadAllGroupMessages=(some boolean), supportsInlineQueries=(some boolean)) -``` - -## What next? - -There are several ways to continue: - -* [Tutorials](https://bookstack.inmo.dev/books/telegrambotapi) -* [Github readme](https://github.com/InsanusMokrassar/TelegramBotAPI) - -In other words, this template (and [TelegramBotAPI library](https://github.com/InsanusMokrassar/TelegramBotAPI)) does -not limit you on choosing of way to continue 😊 diff --git a/github_release.gradle b/github_release.gradle index 06d1d6e..1d867c0 100644 --- a/github_release.gradle +++ b/github_release.gradle @@ -18,6 +18,8 @@ if (new File(projectDir, "secret.gradle").exists()) { githubRelease { token "${project.property('GITHUB_RELEASE_TOKEN')}" + releaseAssets.from('bot/build/distributions') + owner "InsanusMokrassar" repo "PlaguBot"