Skip to content

Releases: Yazan98/fastlane-Zeeva

First Version

27 Sep 03:30
Compare
Choose a tag to compare

Informations

  1. Build Discord Plugin
  2. Build Telegram Plugin

Send Message Builds and Create Custom Message for Each Build Lane

Configurations

  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