No release in over a year
Fastlane Plugin to Send Messages about Builds from Android, IOS Applications Via Fastlane
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies
 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

Telegram Plugin

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
  1. 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)