https://github.com/yazan98/fastlane-zeeva
Fastlane Plugins to Send Messages on (Discord, Telegram) Could be Used to Send Messages When New Build Generated for Android, IOS Applications
https://github.com/yazan98/fastlane-zeeva
android-build ci ci-cd discord discord-bot fastlane fastlane-android fastlane-ios fastlane-plugin telegram-bot
Last synced: 2 months ago
JSON representation
Fastlane Plugins to Send Messages on (Discord, Telegram) Could be Used to Send Messages When New Build Generated for Android, IOS Applications
- Host: GitHub
- URL: https://github.com/yazan98/fastlane-zeeva
- Owner: Yazan98
- License: mit
- Created: 2022-09-19T16:30:16.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2022-09-27T03:26:57.000Z (over 2 years ago)
- Last Synced: 2024-03-15T08:48:06.005Z (about 1 year ago)
- Topics: android-build, ci, ci-cd, discord, discord-bot, fastlane, fastlane-android, fastlane-ios, fastlane-plugin, telegram-bot
- Language: Ruby
- Homepage: https://www.yazantarifi.com/#/projects/zeeva
- Size: 42 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Zeeva
Fastlane Plugins to Send Build Messages Configured with Discord, Telegram Bots
This Repository has 2 Plugins (Telegram, Discord)## Screenshots
### Discord

### Telegram

## Links
[Discord Plugin](https://rubygems.org/gems/fastlane-plugin-zeeva_discord)
[Telegram Plugin](https://rubygems.org/gems/fastlane-plugin-zeeva_telegram)
## Installation
1. Discord Plugin
```
Gemfile : gem 'discordrb'
Pluginfile : gem 'fastlane-plugin-zeeva_discord'Fastfile:
lane :test do
zeeva_discord(
server_token: "Server Token",
client_id: "Bot Client ID",
channel_id: "Target Channel ID",
build_name: "Android Production Build",
platform_code: "Android",
build_type: "Debuggable Build"
)
end
```2. Telegram Plugin
```
Pluginfile : gem 'fastlane-plugin-zeeva_telegram'Fastfile:
lane :test2 do
zeeva_telegram(
server_token: "Bot Token",
build_name: "Android Production Build",
platform_code: "Android",
build_type: "Debuggable Build",
title: "Title Here",
message: "Message Here",
chat_id: "Channel ID"
)
end
```## Build Notes
If you want to Send Build Notes with Current Lane, You need to Create (zeevaBuild.md)
and Add Release Notes to this File (The Plugin will take the Build Notes and Add them to message)